Featured

Stealing Today, Cracking Tomorrow: The Reality of Harvest Now, Decrypt Later

The greatest misconception regarding quantum computing is that its security risks belong to an undetermined future date. In reality, modern security architectures are already compromised by an attack strategy known as Harvest Now, Decrypt Later (HNDL).

Hostile actors and state-sponsored entities do not need to crack your encryption today. They merely intercept, siphon, and archive encrypted communications, encrypted tunnels, and sensitive backups right now. When a Cryptographically Relevant Quantum Computer (CRQC) eventually comes online—whether in five years or fifteen—they will run Shor’s algorithm on your archived payloads to tear apart the underlying public-key cryptography.

If your data’s confidentiality lifespan exceeds the time it takes to build a practical quantum machine, that data is already vulnerable. Securing your infrastructure against this threat requires immediate, pragmatic steps.

Understanding the Asymmetric Bottleneck

Quantum threats do not target all cryptography equally:

  • Symmetric Encryption (AES, ChaCha20): Vulnerable only to Grover’s algorithm, which provides a quadratic speedup. Upgrading from AES-128 to AES-256 effectively mitigates this, keeping key searches computationally intractable.
  • Asymmetric Public-Key Cryptography (RSA, Diffie-Hellman, ECC): Completely vulnerable to Shor’s algorithm. Because asymmetric protocols handle the key exchange during initial TLS handshakes, an attacker who captures your key exchange today can retroactively derive the symmetric keys used to encrypt the payload later.

Protecting against HNDL therefore means eliminating classical asymmetric key exchanges as rapidly as possible.

Step 1: Conduct a Cryptographic Bill of Materials (CBOM)

Before replacing algorithms, identify where vulnerable public keys reside across your network and data storage.

  • Data-in-Transit: Inspect internal and external TLS terminators, VPN tunnels (IPsec/WireGuard), API gateways, and SSH daemons.
  • Data-at-Rest: Audit backup systems, database encryption keys, and envelope encryption patterns where master keys are wrapped using RSA or ECC.
  • Data Lifespan Classification: Categorize secrets by shelf-life. A transient 10-minute session token is of low concern for HNDL; medical records, intellectual property, root certificates, and long-term financial ledgers with a 10- to 20-year lifespan represent acute HNDL liabilities.

Step 2: Deploy Hybrid Post-Quantum Key Exchange

The post-quantum standards established by NIST—specifically ML-KEM (FIPS 203), derived from CRYSTALS-Kyber—are available across modern network stacks and operating environments.

The safest immediate deployment strategy is a hybrid key agreement (combining classical X25519 or ECDH with ML-KEM):

Protocol LayerActionable Update
Web & Ingress TrafficEnable hybrid key exchange suites (e.g., X25519MLKEM768) in your reverse proxies (NGINX, Envoy, Caddy) and load balancers.
Encrypted Tunnels & VPNsAdopt post-quantum pre-shared keys (PQ-PSK) or PQC-enabled WireGuard and IPsec forks for site-to-site tunnels.
SSH InfrastructuresEnsure OpenSSH configurations favor post-quantum key exchange mechanisms (sntrup761x25519-sha512 or hybrid ML-KEM).

Why Hybrid? Hybrid key encapsulation guarantees that if the post-quantum math uncovers an unexpected theoretical flaw, your defense still holds against classical attacks via X25519—while actively stripping HNDL attackers of their quantum harvest.

Step 3: Implement Crypto-Agility

Do not hard-code post-quantum algorithms into your software architecture. Crypto-agility means designing systems where cryptographic primitives, key lengths, and signature verification routines can be hot-swapped via configuration updates rather than complete code rewrites.

  • Separate cryptographic logic into dedicated abstraction layers or standardized libraries (such as OpenSSL 3.x with PQC providers or liboqs).
  • Account for larger payload sizes: Post-quantum public keys, ciphertexts, and digital signatures (such as ML-DSA / FIPS 204 and SLH-DSA / FIPS 205) require significantly more bytes than classical 256-bit elliptic curve points. Ensure your MTU configurations, packet fragmentation buffers, and database schema limits can accommodate larger cryptographic headers without dropping packets.

Step 4: Upgrade Certificate Infrastructure (PKI)

While HNDL primarily targets confidentiality (key exchange), authentication and non-repudiation will collapse under quantum attacks if your Public Key Infrastructure relies solely on RSA or ECDSA signatures.

  • Audit long-lived Root and Intermediate Certificate Authorities (CAs).
  • Plan migration pathways to hybrid x.509 certificates incorporating ML-DSA.
  • Reduce the validity lifespan of issued TLS certificates to minimize the temporal window of any given compromised key.

The arrival date of a commercially viable quantum computer is uncertain, but the transmission of the data you need to protect is occurring right now. By enforcing AES-256 for storage and rolling out hybrid post-quantum key encapsulation across external and internal networks, you render intercepted traffic useless to tomorrow's quantum adversaries.

Comments