Post-Quantum Durability: How Long Will Your Encryption Last?
Planning for 10-year and 30-year cryptographic durability in a world approaching quantum computing
Every piece of encrypted data has an expiration date. Not because the data becomes irrelevant, but because the encryption protecting it has a finite lifespan determined by advances in computation, mathematics, and physics. An RSA-2048 key that is considered secure today will be trivially broken by a quantum computer running Shor's algorithm. The question is not if this will happen but when, and whether the data you are protecting today still needs to be secret at that point. If the answer is yes, you have a durability problem that must be solved now, not when the quantum computer is announced.
Cryptographic durability is the practice of ensuring that encryption and digital signatures remain secure for the entire lifetime of the data they protect. A medical record encrypted today must remain confidential for the patient's lifetime plus any post-mortem retention requirements, potentially 80 years or more. A financial compliance record must remain verifiable for the regulatory retention period, typically 7 to 10 years. A classified government document must remain secret for its classification period, which can extend to 75 years. Each of these durations creates a different durability requirement, and the cryptographic choices you make today determine whether you can meet those requirements.
The AES-256 Outlook
AES-256, the symmetric encryption standard used for data at rest and data in transit, has a favorable quantum outlook. Grover's algorithm, the best known quantum algorithm for attacking symmetric ciphers, provides a quadratic speedup. This means a quantum computer attacking AES-256 would have an effective security level equivalent to AES-128 against a classical computer. AES-128 is still considered secure by all major standards bodies, so AES-256 encrypted data is expected to remain confidential even after quantum computers exist.
However, this assessment comes with caveats. First, it assumes that Grover's algorithm is the best possible quantum attack on AES. If a more efficient quantum algorithm for symmetric cipher analysis is discovered, the security margin could shrink. Second, it assumes that the AES block cipher has no structural weaknesses that a quantum computer could exploit beyond brute force. Third, the practical deployment of Grover's algorithm requires a fault-tolerant quantum computer with enough qubits to run the full search, which is a significant engineering challenge but not an impossibility on a 30-year timeline.
For practical planning purposes, AES-256 is the safest symmetric cipher choice for long-term data protection. Data encrypted with AES-256 today is expected to remain confidential through at least 2060 under any realistic quantum computing scenario. If your data sensitivity lifetime is less than 30 years, AES-256 is sufficient for the confidentiality layer.
The RSA and ECC Sunset
The story for public-key cryptography is starkly different. RSA, ECDSA, ECDH, and all algorithms based on integer factorization or discrete logarithms will be completely broken by Shor's algorithm on a quantum computer. This is not a matter of reduced security levels or larger key sizes. Shor's algorithm solves these problems in polynomial time, meaning that no key size provides meaningful security against a quantum attacker. RSA-4096 takes slightly longer to break than RSA-2048, but the difference is negligible in quantum computing terms.
NIST has published a timeline for deprecating classical public-key algorithms. RSA and ECDSA are expected to be disallowed for new deployments by 2030 and fully deprecated by 2035. Organizations that rely on these algorithms for digital signatures will need to migrate to post-quantum alternatives before the deprecation deadline to maintain compliance. Organizations that rely on them for key exchange will need to migrate even sooner to protect data that is being transmitted today against harvest-now-decrypt-later attacks.
The critical insight is that the RSA sunset affects signatures and encryption differently. For encryption, the threat is retroactive: data encrypted with RSA key exchange today can be harvested and decrypted later. For signatures, the threat is forgery: once quantum computers exist, attackers can forge signatures that appear to have been created by legitimate signers. Every digital signature created with RSA or ECDSA has a durability limited to the quantum computing timeline, regardless of the key size.
Lattice Assumptions Under Scrutiny
NIST's post-quantum standards are based primarily on lattice problems: the Module Learning With Errors (MLWE) problem for ML-KEM and ML-DSA, and the NTRU problem for FALCON. These problems are believed to be hard for both classical and quantum computers, but "believed" is the operative word. No mathematical proof exists that these problems cannot be solved efficiently. The security of lattice-based cryptography rests on decades of study and the absence of known efficient algorithms, not on a proof of hardness.
Several research directions could potentially weaken lattice assumptions. Advances in lattice reduction algorithms (like improvements to BKZ or new quantum lattice algorithms) could reduce the effective security of current parameter sizes. Algebraic structure in module lattices (used by ML-DSA and ML-KEM) might eventually be exploitable in ways that unstructured lattices are not. And the relatively short history of lattice cryptography compared to RSA means there has been less time for the cryptographic community to discover weaknesses.
This uncertainty is precisely why H33 uses three independent hardness assumptions rather than relying solely on lattice problems. The three-family approach with ML-DSA (MLWE lattices), FALCON (NTRU lattices), and SLH-DSA (hash functions) ensures that a breakthrough against any single mathematical assumption does not compromise the entire system. SLH-DSA in particular provides a fallback that is based on hash function security rather than any algebraic structure, offering a fundamentally different security guarantee.
Planning for 10-Year Durability
If your data needs to remain protected for 10 years from today, you are planning for protection through 2036. This timeline almost certainly includes the arrival of cryptographically relevant quantum computers. Your 10-year durability plan must address the following requirements.
For confidentiality, use AES-256 for symmetric encryption and transition key exchange to post-quantum algorithms immediately. Any data encrypted today with RSA or ECDH key exchange is at risk from harvest-now-decrypt-later attacks. ML-KEM (Kyber) provides post-quantum key encapsulation that is standardized and ready for deployment.
For integrity and authenticity, transition digital signatures to post-quantum algorithms. ML-DSA (Dilithium) is the primary NIST standard for post-quantum signatures. For defense in depth, use multiple signature families as H33 does with its three-family approach. Every document or audit record signed with RSA or ECDSA today will be forgeable by 2036.
For crypto-agility, design your systems so that algorithms can be swapped without rebuilding the entire infrastructure. Abstract cryptographic operations behind interfaces that support multiple algorithm families. Store algorithm identifiers alongside encrypted data and signatures so that the correct algorithm is used for decryption and verification as you migrate across algorithm generations.
Planning for 30-Year Durability
If your data needs to remain protected for 30 years, you are planning for protection through 2056. At this horizon, even some post-quantum assumptions may be challenged by advances in mathematics or computational theory. Your 30-year durability plan requires additional measures beyond the 10-year plan.
Use multiple independent hardness assumptions. A single post-quantum algorithm may be broken by a mathematical advance in 2045 that we cannot predict today. H33's approach of combining MLWE lattices, NTRU lattices, and hash-based signatures provides resilience against the failure of any single assumption. For 30-year durability, this kind of diversification is not optional; it is the minimum responsible approach.
Plan for re-encryption and re-signing. Even with the best algorithms available today, a 30-year timeline may require periodic cryptographic updates. Design your systems to support re-encrypting stored data with newer algorithms as they become available, and re-signing archived documents with updated signature schemes. This requires that decryption keys for the original encryption are maintained throughout the data lifecycle, which creates its own key management challenges.
Use immutable anchoring for critical records. The 74-byte H33-74 attestation primitive anchored to a blockchain provides a verification root that does not depend on any single algorithm remaining secure. Even if the original signatures are eventually forgeable, the blockchain anchor proves that the attestation existed at a specific time. Combined with re-signing using updated algorithms, this creates a chain of trust that survives cryptographic transitions.
Crypto-Agility Architecture
Crypto-agility is the engineering practice of designing systems so that cryptographic algorithms can be replaced without requiring a complete system redesign. In a world where algorithm lifetimes are uncertain and regulatory requirements evolve, crypto-agility is not a luxury; it is a survival requirement.
A crypto-agile architecture has four key properties. First, algorithm abstraction: cryptographic operations are performed through an interface that supports multiple algorithm implementations. The calling code does not know or care which specific algorithm is being used. Second, algorithm negotiation: when two parties communicate, they negotiate the strongest mutually supported algorithm rather than hard-coding a specific choice. Third, algorithm tagging: every encrypted object and signed document includes metadata identifying which algorithm was used, enabling correct processing as the algorithm landscape changes. Fourth, parallel operation: during migration periods, systems can operate with both old and new algorithms simultaneously, encrypting with the new algorithm while maintaining the ability to decrypt with the old one.
H33's pipeline is crypto-agile by design. The three-family signature scheme already demonstrates parallel operation across multiple algorithm families. The FHE layer supports BFV, CKKS, and TFHE, with scheme selection driven by the workload rather than hard-coded into the system. When NIST standardizes new post-quantum algorithms or deprecates existing ones, H33 can adapt its pipeline without disrupting production workloads.
The Cost of Waiting
Organizations that delay post-quantum migration face compounding costs. Every day of delay is another day of data transmitted under quantum-vulnerable key exchange, harvestable by adversaries for future decryption. Every document signed with RSA or ECDSA is another record whose integrity cannot be guaranteed beyond the quantum horizon. Every system deployed without crypto-agility is another system that will require emergency replacement when regulatory deadlines arrive.
The NIST deprecation timeline is not a suggestion. Federal agencies are required to inventory their cryptographic dependencies and create migration plans. Regulatory frameworks in healthcare, finance, and critical infrastructure are incorporating quantum readiness requirements. Organizations that begin migration now will meet these requirements smoothly. Organizations that wait will face compressed timelines, premium consulting costs, and the operational risk of rushing a cryptographic migration.
H33's Durability Architecture
H33's pipeline is designed for cryptographic durability from the ground up. The three-family post-quantum signature scheme ensures that attestations remain valid even if one or two of the underlying mathematical assumptions are broken. The 74-byte H33-74 primitive provides an immutable on-chain anchor that survives algorithm transitions. The STARK-based verification layer uses hash-based security (SHA3-256) that is quantum-resistant by nature. The FHE encryption layer uses lattice-based BFV that is believed to be quantum-resistant for confidentiality.
Every layer of the pipeline is designed to be replaceable. When new NIST standards arrive or existing algorithms are deprecated, individual components can be updated without rebuilding the entire system. This is crypto-agility at the infrastructure level, not just at the application level. It is the architecture that long-term data protection demands, and it is available in production today at 2,293,766 operations per second with 38-microsecond per-authentication latency.
Your encryption has an expiration date. The question is whether you have planned for it. The tools to build durable cryptographic infrastructure exist today. The regulatory pressure to deploy them is building. The quantum clock is ticking. The organizations that act now will be the ones whose data remains protected when the clock runs out.