Also mentioned
RSARSARivest, Shamir and AdlemanA widely used public-key algorithm for encryption and digital signatures whose security relies on the difficulty of factoring large numbers.Read the full entry, ML-KEMML-KEMModule-Lattice-based Key Encapsulation MechanismModule-Lattice-Based Key-Encapsulation Mechanism, the NIST-standardized post-quantum KEM derived from CRYSTALS-Kyber and specified in FIPS 203.Read the full entry, ML-DSAML-DSAModule-Lattice-based Digital Signature AlgorithmModule-Lattice-Based Digital Signature Algorithm, the NIST-standardized post-quantum signature scheme derived from CRYSTALS-Dilithium and specified in FIPS 204.Read the full entry, SLH-DSASLH-DSAStateless Hash-based Digital Signature AlgorithmStateless Hash-Based Digital Signature Algorithm, the NIST-standardized signature scheme derived from SPHINCS+ and specified in FIPS 205.Read the full entry, KEMKEMkey encapsulation mechanismA public-key mechanism for securely establishing a shared secret key: the sender encapsulates a random secret to the recipient's public key, and the recipient decapsulates it with their private key.Read the full entry, TLSTLSTransport Layer SecurityTransport Layer Security, the protocol that encrypts and authenticates most internet traffic, including HTTPS. It uses key exchange, certificates, and symmetric encryption to protect a session.Read the full entry, FIPSFIPSFederal Information Processing StandardFederal Information Processing Standards, publicly announced standards developed by NIST for use in U.S. government computer systems, including cryptographic algorithms and modules.Read the full entry, NISTNISTNational Institute of Standards and TechnologyThe U.S. National Institute of Standards and Technology, the agency that develops and publishes cryptographic standards, including the FIPS series and post-quantum algorithms.Read the full entry, CBOMCBOMcryptographic bill of materialsA Cryptographic Bill of Materials, a structured, machine-readable inventory of the cryptographic assets used by a system or application, often expressed as an extension of a software bill of materials (SBOM).Read the full entry, CNSACNSACommercial National Security Algorithm SuiteThe Commercial National Security Algorithm Suite 2.0, the NSA's mandated algorithm set for US National Security Systems.Read the full entry are defined in the glossary.
The post-quantum standards landscape looks sprawling from the outside: a dozen documents from NIST, the NSA, the White House, and several standards bodies, published over three years and still arriving. It is easier to navigate once you see that the pieces fall into three layers that answer three different questions. The algorithm standards tell you what to deploy: the specific quantum-resistant primitives that replace RSA and elliptic-curve cryptography. The policy and deployment layer tells you when: the deadlines and mandates that turn a technical option into a compliance requirement. And the interchange formats tell you where you stand today: the machine-readable inventories and findings that let you measure the gap between the two. The urgency underneath all three is harvest-now, decrypt-later: traffic and data an adversary can record today and decrypt once a cryptographically-relevant quantum computer exists, which is why migration cannot wait for that computer to arrive.
Algorithms: what to deploy
NIST finalized the first three post-quantum standards on 13 August 2024, after an eight-year public competition. Two are lattice-based and general-purpose; one is a hash-based backstop that rests on more conservative assumptions; and an older special-purpose standard covers firmware and code signing. Together they replace every classical public-key primitive in common use.
- FIPS 203 (ML-KEM): the key-encapsulation mechanism that replaces RSA key transport and (EC)DH key exchange. This is the first thing to migrate, because key exchange is the surface most exposed to harvest-now-decrypt-later.
- FIPS 204 (ML-DSA): the primary digital-signature standard (lattice-based, ex-Dilithium) for authentication, certificates, and general signing.
- FIPS 205 (SLH-DSA): a stateless hash-based signature scheme whose security rests only on the hash function, making it the conservative hedge if a lattice weakness is ever found.
- NIST SP 800-208 (LMS/XMSS): stateful hash-based signatures, the right tool for firmware and code signing where the signing state can be managed carefully.
The algorithm layer is still growing. In March 2025 NIST selected HQC, a code-based KEM, as a backup to ML-KEM, giving algorithm diversity in case a lattice weakness is ever found, with a draft FIPS expected around 2026. FN-DSA (ex-Falcon), a compact lattice signature, is on track to become draft FIPS 206.
Deployment & policy: when to move
The algorithms are optional until policy makes them mandatory, and it now has. Overlapping mandates from the NSA, the White House, and NIST set the deadlines that drive real migration programs, while the TLS hybrid standard defines how the new algorithms actually protect traffic on the wire. Read these to know which clock applies to you and when it runs out.
- CNSA 2.0: the NSA suite for National Security Systems: ML-KEM and ML-DSA exclusively by 2033, with no hybrid requirement (national-security systems accept the pure post-quantum algorithms).
- NSM-10 & OMB M-23-02: the US federal mandate to build a cryptographic inventory and migrate, with a 2035 mitigation target for high-value systems.
- NIST IR 8547: the deprecation timeline: quantum-vulnerable algorithms deprecated after 2030 and disallowed after 2035, the schedule most commercial programs plan their migration roadmap against.
- TLS hybrid key exchange: X25519MLKEM768, already the deployed default in major browsers and servers, protecting the connection even if either the lattice or the classical half is broken.
Interchange & tooling: where you stand
Progress you cannot count is progress you cannot defend, and a migration this large is unmanageable without machine-readable evidence. Three formats let inventory, scanning, and risk assessment flow between tools instead of living in spreadsheets. That is the raw material for crypto-agility and for tracking progress against the deadlines above.
- CycloneDX CBOM: the Cryptography Bill of Materials, a machine-readable inventory of the algorithms, keys, and certificates in your systems.
- SARIF: the OASIS interchange format for static-analysis findings, so cryptography-detection results from many scanners land in one normalized view.
- OpenVEX: Vulnerability Exploitability eXchange assertions, letting you record which quantum-vulnerable findings actually apply in context and which are already mitigated.
The through-line
The algorithm standards tell you WHAT to deploy; policy tells you WHEN, in the form of hard deadlines; tooling tells you WHERE you stand right now. Read them as one system, not a reading list. A migration plan is what connects a CBOM inventory to an IR 8547 deadline to a conformant ML-KEM deployment.
Connecting the map to your own systems
Those three layers map directly onto the four things we do. We turn the tooling layer into a real picture of your exposure, building the CBOM inventory and ranking harvest-now-decrypt-later risk (audit). We take the algorithm and policy layers and execute the transition to ML-KEM, ML-DSA, and hybrid key exchange without breaking production (migration). We prove the implementation you ship actually conforms to FIPS 203/204/205, not merely that it passes the known-answer vectors (certification). And we get your engineers fluent in the standards and deadlines so the program outlives any single project (training). Start with whichever layer is most urgent for you; each page below goes deeper, and each routes back here.
Frequently asked questions
Which post-quantum standard should I read first?
Start with the layer that matches your immediate question. If you are choosing algorithms, read FIPS 203 (ML-KEM), because key exchange migrates first. If you are on a compliance clock, read NIST IR 8547 and NSM-10 for the deadlines. If you are trying to measure your exposure, start with CycloneDX CBOM and build an inventory. This overview links all three layers so you can pick your entry point.
What are the real deadlines?
NIST IR 8547 deprecates quantum-vulnerable public-key algorithms after 2030 and disallows them after 2035. US federal systems work to the NSM-10 / OMB M-23-02 2035 mitigation target. National Security Systems follow CNSA 2.0, which requires the post-quantum algorithms exclusively by 2033. Commercial programs generally plan against the 2030/2035 IR 8547 schedule.
Do I have to deploy the new algorithms in hybrid mode?
For general internet traffic, yes in practice: TLS uses hybrid X25519MLKEM768, so the connection stays secure if either the lattice or the classical half is broken. CNSA 2.0 is the deliberate exception: it does not require hybrids for national-security systems, mandating the pure post-quantum algorithms instead.
Why do I need the interchange formats, if the migration is just swapping algorithms?
The swap is the small part. The hard part is knowing where every RSA key, certificate, and TLS endpoint lives across a large estate, and proving you have covered them before a deadline. CBOM, SARIF, and OpenVEX turn that into machine-readable evidence that flows between tools, which is what makes the program measurable and auditable rather than a one-time guess.
Work with us on The PQC standards landscape
Related reading
References
- NIST: the umbrella program that produced and maintains all of these standards: Post-Quantum Cryptography project.
- NIST: the announcement of the three finalized algorithm standards: NIST Releases First 3 Finalized Post-Quantum Encryption Standards.
- NIST: the deprecation-and-disallowance timeline that sets the 2030/2035 clock: IR 8547, Transition to Post-Quantum Cryptography Standards.
- NSA: the National Security Systems suite and its 2033 deadline: Commercial National Security Algorithm Suite 2.0.