Back to Blog
Tech InnovationsJune 15, 2026by Theo Nova

DID and Post-Quantum Cryptography: Why the Combination Matters Now

DID and Post-Quantum Cryptography: Why the Combination Matters Now

August 2024 was a milestone that most of the decentralized identity world missed. NIST finalized three post-quantum cryptographic standards: FIPS 203 (based on the Kyber/ML-KEM algorithm), FIPS 204 (Dilithium/ML-DSA), and FIPS 205 (Falcon/SLH-DSA). These aren't experimental proposals. They're finalized federal standards with real implementation timelines, and they come with a deadline: NIST plans to deprecate ECDSA by 2030 and disallow it entirely by 2035 (NIST press release, August 13, 2024).

Here's the problem: every major deployed DID framework in production today uses cryptographic primitives that will be deprecated inside this window. Hyperledger Indy uses CL-RSA signatures and Curve25519 key exchange. Polygon ID uses elliptic curve cryptography. Even newer frameworks built on Ethereum rely on secp256k1, an elliptic curve that NIST plans to deprecate.

A 2025 paper in Frontiers in Blockchain explicitly called out that no deployed DID framework has native post-quantum cryptography (Frontiers in Blockchain, 2025). That's not a gap that can wait another product cycle.

The Threat Model: Harvest Now, Decrypt Later

The quantum threat to identity isn't hypothetical future risk. It's an active problem today because of an attack called "harvest now, decrypt later." The approach is simple: adversaries capture encrypted credential presentations and key exchange data right now, store it, and decrypt it once quantum computers reach sufficient capability. The encrypted data from 2026 becomes readable in 2034.

Google's March 2026 paper provided a concrete threat assessment: breaking 256-bit elliptic curve cryptography requires approximately 1,200 logical qubits. That's a threshold that's narrowing faster than most projections expected five years ago. NIST's current guidance treats the 2030 deprecation timeline as conservative.

The implication for digital identity is specific: if you issue a credential today using elliptic curve cryptography, an adversary who captures the credential presentation can potentially decrypt it before the credential expires. For short-lived access tokens, this doesn't matter much. For long-lived identity credentials, it's a serious problem.

As Dustin Moody, lead of NIST's Post-Quantum Cryptography project, framed it when the standards were finalized: "There is no need to wait for future standards. Go ahead and start using these three. We need to be prepared in case of an attack that defeats the algorithms in these three standards, and we will continue to evaluate other algorithms." That's an unusual urgency tone from a federal standards body.

The Credential Longevity Problem

Digital identity credentials are different from session tokens. A government-issued credential, a professional license, a healthcare record, or a KYC attestation might be valid for 10 to 20 years. The credential issued to a patient today may still be in use in 2044. The quantum threat is within the validity window of credentials being issued right now.

This creates a binding problem. If the signing key used to issue a credential becomes quantum-vulnerable before the credential expires, the entire credential's authenticity comes into question. An attacker who can forge signatures on old keys can claim that a fraudulent credential is legitimate, or that a legitimate credential has been tampered with.

Key rotation helps somewhat, but it doesn't eliminate the risk for credentials already issued. Once a credential is signed with a quantum-vulnerable key and that key is broken, the credential's provenance is compromised regardless of whether the issuer has since rotated to a new key.

The European Banking Authority's 2025 guidance on cryptographic agility for regulated financial institutions explicitly cites long-lived KYC and corporate identity credentials as the highest-priority migration targets, with a recommended timeline of full PQC coverage by 2028 for credentials with validity periods exceeding five years. That's a tighter timeline than NIST's, and it's already binding on EU banks.

Why Existing DID Frameworks Can't Retrofit PQC Easily

Post-quantum algorithms aren't drop-in replacements for elliptic curve cryptography. They have different key sizes, different signature sizes, different performance characteristics, and different security properties. ML-KEM (Kyber) keys are substantially larger than Curve25519 keys. ML-DSA (Dilithium) signatures are larger than ECDSA signatures. These size differences affect every layer of a credential system.

DID documents, which are the authoritative records of a DID subject's public keys, must be updated to carry post-quantum keys. The DID method's underlying ledger must be able to store larger key material. Verifiable credential presentations must accommodate larger signatures. Wallet implementations must handle new key generation, storage, and signing procedures. It's a full-stack change.

For frameworks like Hyperledger Indy, this is especially difficult. The ledger's data model was designed for a specific key format. Indy's anoncreds credential format uses CL signatures, which are quantum-vulnerable and don't have a PQC equivalent with the same zero-knowledge properties. Migrating Indy to post-quantum cryptography isn't a configuration change; it's a protocol redesign.

Migration cost for enterprise identity systems typically runs three to seven years from planning to full cutover, based on historical case data from the SHA-1 to SHA-2 migration and the TLS 1.2 to 1.3 migration. PQC migrations involve more variables than either of those: new key formats, new signature schemes, new hybrid modes, and new compliance reporting. The early planners will finish in time. The latecomers will be carrying legacy crypto liability into 2035.

What NIST's Timeline Actually Requires

NIST's deprecation schedule is not advisory. Federal agencies are required to follow NIST standards under FISMA and OMB guidance. Financial institutions subject to OCC and FDIC oversight follow NIST frameworks. Healthcare organizations under HIPAA rely on NIST cryptographic guidance. Any identity system that wants to be used in regulated contexts must be compliant with NIST timelines.

The 2030 deprecation date for ECDSA gives developers roughly four years from today to migrate. That sounds comfortable until you account for procurement cycles in government, multi-year integration projects in healthcare, and the time required to upgrade credential ecosystems that involve multiple issuers, verifiers, and wallet providers. The lead time for enterprise cryptographic migration is typically three to seven years.

There's a second clock running in parallel: regulatory enforcement. The U.S. National Security Memorandum 10, issued in 2022, directs federal agencies to inventory their cryptographic systems and prioritize PQC migration. The CISA Quantum-Readiness Roadmap published in 2023 turned that directive into operational guidance. Vendors selling into federal markets are already being asked to document their PQC migration plans during procurement.

TheoID: PQC as an OS-Layer Primitive

Autheo's TheoID was designed with post-quantum cryptography as a foundational requirement, not an upgrade path. The system ships Kyber (ML-KEM), Dilithium (ML-DSA), and Falcon (SLH-DSA) as native OS-layer primitives, implemented in accordance with the finalized FIPS 203, 204, and 205 standards.

This means that every DID created through TheoID gets a post-quantum key pair from the moment of instantiation. Every credential signed by a TheoID-anchored issuer carries a quantum-resistant signature. Every credential presentation verifiable through TheoID is resistant to harvest-now-decrypt-later attacks because the underlying signatures use algorithms that current quantum computing research cannot break.

The OS-layer approach matters specifically because it eliminates the retrofit problem. If PQC is bolted onto an existing framework, developers must explicitly opt into quantum-safe operations and manage two parallel key systems during migration. If PQC is the default at the infrastructure layer, developers simply use the system and get quantum safety automatically.

The Hybrid Approach: Transitioning Without Breaking Interoperability

The transition period from classical to post-quantum cryptography requires care. Existing credentials, existing verifiers, and existing wallet implementations all rely on classical algorithms. A DID system that switches entirely to PQC overnight would break interoperability with the broader ecosystem.

NIST and the broader cryptographic community recommend a hybrid approach during the transition: sign credentials with both a classical signature and a post-quantum signature simultaneously. Verifiers that support PQC can validate the quantum-safe signature. Legacy verifiers can validate the classical signature. Over time, as PQC support becomes universal, the classical signatures can be retired.

For deeper context on the intersection of post-quantum cryptography and identity infrastructure, see our coverage of AI agents and post-quantum signatures, how banks are solving auditable privacy with post-quantum ledgers, and the specific mitigations available from Google's quantum disclosure. Our guides on building onchain AI agents and non-financial risk management across your blockchain stack cover the broader infrastructure context.

Key Takeaways

  • NIST finalized post-quantum standards in August 2024 (FIPS 203/204/205). ECDSA deprecates in 2030, disallowed in 2035.
  • Every major deployed DID framework (Indy, Polygon ID, Ethereum-based) uses crypto that will be deprecated inside this window.
  • Harvest-now-decrypt-later attacks make today's credential issuances tomorrow's compliance liabilities for any credential with multi-year validity.
  • Indy and other purpose-built ledgers face protocol redesigns, not configuration changes. Enterprise migrations typically take three to seven years.
  • TheoID ships PQC as an OS-layer primitive, eliminating the retrofit problem entirely for new identity issuances.

The combination of DIDs and post-quantum cryptography isn't a future roadmap item. NIST's finalized standards, the narrowing quantum timeline, and the credential longevity problem all make this an urgent engineering priority for any identity system that expects to be in production past 2030. The frameworks that build PQC in now will be the ones organizations trust for the next decade. To see how this fits into the broader Autheo vision and the $500 billion opportunity in Web3 infrastructure the team is positioning around, the cornerstone analysis is the right starting point.

Share

Gear Up with Autheo

Rep the network. Official merch from the Autheo Store.

Visit the Autheo Store

Theo Nova

The editorial voice of Autheo

Research-driven coverage of Layer-0 infrastructure, decentralized AI, and the integration era of Web3. Written and reviewed by the Autheo content and engineering teams.

About this author →

Get the Autheo Daily

Blockchain insights, AI trends, and Web3 infrastructure updates delivered to your inbox every morning.