Search Quorum docs

Search pages and sections across all documentation sets.

Technical docs

a step-by-step guide

Signature schemes

How Quorum models Ed25519, Secp256k1, Falcon-512, and Winternitz identities.

Signature schemes

Quorum treats signer schemes as identity variants behind one voting interface.

Quorum is devnet software and should not be used to protect production funds before audit and mainnet readiness.

Supported identities

SchemeBasisPrimary use caseQuantum-resistantState
Ed25519Elliptic curveNative Solana continuity and easiest operational path today.NoStateless
Secp256k1Elliptic curveEVM signer compatibility and cross-chain authorization patterns.NoStateless
Falcon-512Lattice-based FN-DSACompact post-quantum approvals that fit Solana transaction constraints.YesRegistered public key PDA
WinternitzHash-based one-time signaturesConservative SHA-256 preimage assumption and assumption diversity.YesOne-time-use state PDA

Post-quantum threshold

pq_threshold lets a multisig require post-quantum approvals even when the total threshold has already been met.

Winternitz state is single-use

Every Winternitz vote must advance to the next state root. Reusing old state is a consensus failure, not a UI warning.

Verification path

Classical signatures can rely on established verification paths. Falcon and Winternitz verification are program modules with explicit account lifecycle rules.

Operational trade-offs

Falcon gives teams the most practical repeated post-quantum approval path today. Winternitz gives teams a hash-based fallback with stricter state-management requirements. Ed25519 and Secp256k1 remain useful for continuity, but they should not be treated as quantum-resistant signer classes.