Signature scheme auditor
Skill Yue-Zhou1/zkcrypto-audit/plugins/crypto-primitive-auditors/skills/signature-scheme-auditor
Audit classical signature schemes — generic ECDSA across curves, Schnorr/ BIP-340, EdDSA/Ed25519, RSA-PSS and PKCS#1 v1.5 — for verification-equation correctness, malleability, canonical encoding, public-key validation, and hash/prehash semantics. Use for standalone signature library review outside Ethereum application encoding, BLS, or threshold protocols.From its SKILL.md
npx -y skills add Yue-Zhou1/zkcrypto-audit --skill signature-scheme-auditorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.9 KB, 902 tokens by cl100k_base, as published. Nobody here has run it
signature-scheme-auditor
Domain auditor for classical single-party signature schemes: the verification equations, encodings, and key-validation rules of ECDSA, Schnorr/BIP-340, EdDSA, and RSA signatures.
When to Use
- Auditing generic ECDSA signing/verification across ecosystems and curves (P-256, secp256k1, brainpool, etc.)
- Reviewing Schnorr and BIP-340 x-only key handling, tagged hashes, and verification equations
- Reviewing EdDSA/Ed25519 canonical encoding, cofactor semantics, and batch/single verification consistency
- Reviewing RSA-PSS and PKCS#1 v1.5 verification and padding rules
- Assessing malleability, public-key validation, and hash/prehash semantics
When NOT to Use
- Ethereum-specific EIP-712, ecrecover, or application encoding ->
ethereum-crypto-auditor - BLS signatures, pairings, aggregation ->
ecc-pairing-auditor - Threshold schemes ->
dkg-threshold-auditor(FROST/MuSig2) orthreshold-ecdsa-auditor(GG/CGGMP) - Nonce generation/derivation mechanics ->
randomness-auditor - Fault-attack resistance of signing hardware paths -> implementation-safety skills (verify-after-sign handoff)
Core Review Areas
- Verification equations: exact equation per scheme, all components checked (never trusting a library's partial verification)
- Range and canonicality: ECDSA r,s in [1, n-1]; Ed25519 s < L and canonical point encodings; BIP-340 x-only lift and even-y convention; PSS salt and v1.5 DigestInfo strictness
- Malleability: ECDSA (r, s)/(r, n-s); Ed25519 non-canonical s or A; scheme-level implications for consumers that key on signature bytes
- Public-key validation: on-curve, non-identity, correct subgroup (or cofactored equation), small-order rejection policy
- Hash and prehash semantics: which hash, truncation rules (FIPS 186-5 leftmost-bits), Ed25519ph/ctx variants, cross-protocol hash-domain reuse
- Batch vs single consistency: batch equations (cofactored) accepting what single (cofactorless) rejects, and consensus divergence risk
- Nonce integration: signing paths call correct derivation (RFC 6979 /
RFC 8032) — deep RNG review hands off to
randomness-auditor - Verify-after-sign and fault-check posture at the API boundary
Workflow
Phase 1: Scheme inventory
- Read
references/signature-scheme-checklist.md - Identify every scheme/curve/hash triple in scope and the governing standard for each
Phase 2: Verification-path review
- Execute
workflows/signature-verification-review.md
Phase 3: Pattern hunt
- Read
references/finding-patterns.md - Prioritize missing range checks, permissive decoders, batch/single divergence, and v1.5 parsing tolerance
Phase 4: Handoff
- Send surviving findings to
crypto-fp-check - Cross-route nonce lifecycle to
randomness-auditor, Ethereum encoding toethereum-crypto-auditor, BLS/pairing math toecc-pairing-auditor
Output Contract
Produce a signature-scheme handoff that includes:
signature_familyverification_or_signing_pathequation_or_encoding_invariantevidencedisposition(one ofverified,false_positive,unverified,observation,residual_risk)next_route
Reference Index
What ships with it: 5 files
11.6 KB alongside SKILL.md
agents/
- openai.yaml537 B
references/
- finding-patterns.md2.9 KB
- signature-scheme-checklist.md4.1 KB
- spec-sources.md1.8 KB