Hybrid Post-Quantum Signature Constructions
Technical specification for hybrid digital signature schemes combining classical algorithms (ed25519, sr25519) with post-quantum algorithms (ML-DSA-44, Falcon-512).
A notion document with commenting enabled is available here: https://app.notion.com/p/Hybrid-Post-Quantum-Signature-Constructions-330db8c6a0888106abe9d5d75631a03e?source=copy_link
Editors welcomed, just reply here or drop comments in notion.
1. Scope & References
Scope
This document specifies four hybrid signature constructions for the substrate ecosystem. Each construction pairs one classical signature scheme with one post-quantum signature scheme, producing a composite signature that is EUF-CMA secure if at least one component scheme remains secure.
In scope: Key generation, signing (hedged and deterministic modes), verification, serialization, domain separation, seed derivation, and language-specific implementation guidance for Rust and Go.
Out of scope: Hybrid NIKE/key exchange, key encapsulation (KEM), standalone PQ algorithm deployment, and signature aggregation (BLS).
Normative References
Reference Implementations
| Algorithm | Rust Crate | Repository |
|---|---|---|
| ed25519 | ed25519-zebra |
paritytech/substrate (sp_core::ed25519) |
| sr25519 | schnorrkel |
paritytech/substrate (sp_core::sr25519) |
| ML-DSA-44 | fips204 |
integritychain/fips204 |
| Falcon-512 | fn-dsa |
pornin/rust-fn-dsa |
2. Motivation
Threat Model
A Cryptographically Relevant Quantum Computer (CRQC) can break ed25519 and sr25519 via Shor’s algorithm. Post-quantum algorithms (ML-DSA-44, Falcon-512) are resistant to known quantum attacks but are newer and less battle-tested than classical schemes.
Security Goal
EUF-CMA (Existential Unforgeability under Chosen Message Attack) security if at least one component scheme remains secure. If either the classical or post-quantum algorithm is broken, the composite signature remains unforgeable through the surviving component.
Why Hybrid
- Hedge against cryptanalytic breakthroughs in either classical or PQ algorithms
- PQ algorithms have shorter deployment history — hybrid construction provides a safety net
- Matches the IETF composite signature approach (draft-ietf-lamps-pq-composite-sigs)