Where Has Quantum-Resistant Cryptography Actually Reached? NIST Standardization, Onchain Practice, and Realistic Threat Assessment

Security · 2026-05-30 · 比特三棱镜编辑部
Ask AI

The quantum-threat conversation has run for over a decade and mostly sounded like a far-future problem. But in 2026 the framing visibly shifted: NIST’s three post-quantum cryptography (PQC) standards are fully formalized, mainstream browsers, operating systems, and key-exchange protocols are progressively cutting over, and core Bitcoin and Ethereum discussion moved from “should we migrate” to “when and how”. This piece lays out where the lane stands today.

Migration diagram showing post quantum cryptography standards ML-KEM ML-DSA and SLH-DSA replacing legacy RSA and ECDSA

What exactly does the quantum threat target

Sharpen the fuzzy phrase “quantum threat” first. Quantum computing doesn’t “break all cryptography” — it precisely strikes two algorithm families:

  • Algorithms based on integer factorization (RSA) — Shor’s algorithm, on a sufficiently large quantum computer, factors large integers in polynomial time
  • Algorithms based on the discrete logarithm problem (ECDSA, ECDH, elliptic curve cryptography in general) — also solved by Shor’s algorithm

Symmetric encryption (AES) and hash functions (SHA-256, Keccak) face a much milder threat — Grover’s algorithm only halves the effective key strength (sqrt-time search), so the response is simply doubling the key length.

What does this mean for the onchain world? Bitcoin and Ethereum signatures are almost universally ECDSA or similar elliptic curve schemes — once a sufficiently capable quantum computer exists, any address whose public key has been exposed onchain becomes vulnerable to private key recovery. That’s why this lane is taken seriously in 2026. If smart contracts and address mechanics are still fuzzy, start with security guide.

What the three NIST PQC algorithms each do

NIST released the first batch of PQC standards in 2024, and by 2026 they’ve cleared full review and entered progressive adoption across mainstream systems. The three side by side:

Standard Type Use case Roughly replaces
ML-KEM (Kyber) Key encapsulation Securely establish symmetric keys RSA / ECDH key exchange
ML-DSA (Dilithium) Digital signature High-throughput general signature ECDSA / RSA signatures
SLH-DSA (SPHINCS+) Hash-based signature Long-horizon conservative signing High-conservatism scenarios

These three are complementary, not alternative: ML-KEM handles key exchange, ML-DSA handles routine high-performance signing, SLH-DSA fits scenarios that don’t need throughput but need extreme conservative security assumptions (root certificates, firmware signing, etc.).

What’s the cost? Compared to RSA and ECDSA, keys and signatures are significantly larger — an ML-DSA signature is around 2.4KB (ECDSA is ~64 bytes), SLH-DSA can run 8KB+. In the onchain environment where “every byte is gas”, that’s a real engineering challenge.

How real is the “harvest now decrypt later” threat

In English the threat has a dedicated label: “Harvest Now, Decrypt Later” — attackers begin storing encrypted traffic at scale today, and once a quantum computer matures years or decades later, they batch-decrypt the archive.

Which scenarios face this as a real threat?

  • Long-term confidential data — medical records, state-level secrets, corporate IP that stays sensitive 10-20 years out
  • Permanently public onchain transactions — Bitcoin and Ethereum’s full history is public, so a public key exposed today is essentially archiving “future-quantum-era attack material” permanently
  • Institutional long-horizon compliance signing — certain regulated e-signatures need to remain valid 30 years out

Which scenarios face less HNDL threat? Casual messaging, ephemeral session keys, short-horizon financial transactions — attacker motivation to store a decade of routine messages just to decrypt them later is essentially zero.

The reason the onchain world is structurally more exposed than messaging is exactly the second bullet — onchain data is public and permanent. That’s why core Ethereum researchers already placed “PQC migration” on the long-term roadmap.

Bitcoin and Ethereum’s separate migration debates

The two ecosystems run at different paces.

Bitcoin moves conservatively — the core discussion centers on BIP proposals introducing a new script type with PQC signatures replacing ECDSA/Schnorr. The biggest challenge is compatibility — Bitcoin’s hard fork threshold is extreme, and coordinating a network-wide algorithm switch is multi-year engineering. The compromise is new and old address types coexisting with gradual migration.

Ethereum moves more actively. Core developers repeatedly raise “account abstraction + PQC” as a combined path — EIP-7702 / smart account abstraction lets account-level signature algorithms upgrade smoothly. Mechanism details live in smart account 2025 trend.

A side-by-side of the two migration paths:

Dimension Bitcoin migration Ethereum migration
Upgrade mechanism Soft/hard fork + new script type EIP + account abstraction
Timeline Years of discussion + long-tail migration Roadmap clearer but still multi-year
Compatibility pressure Extreme Moderate
Migration cost Old-address users must act Smart accounts can batch-adapt

Parallel migration timeline comparison between Bitcoin and Ethereum post quantum upgrade paths

What’s actively being researched on the onchain side

Beyond waiting for NIST standards to land, the onchain world is exploring its own paths. Directions:

  • STARK-family zero-knowledge proofs — built on hash functions, inherently quantum-resistant, a key zk-STARK advantage over zk-SNARK under PQC assumptions
  • Lattice-based zero-knowledge proofs — teams building lattice ZK systems aiming for “high efficiency + quantum resistance”
  • Account abstraction + signature upgrade — Ethereum’s route
  • Dedicated research like BMIC — institutions working on onchain PQC integration feasibility

ZK fundamentals are in zk Rollup guide.

Should regular users and developers act today

The practical question: as a regular user or a regular project team, do you have to start PQC migration today?

My read splits into two layers:

  • Regular users: there’s no need to change any usage habit for PQC short-term. The critical task remains basic security — hardware wallets, avoid address reuse (which itself reduces HNDL exposure), guard against phishing. Basic security matters 100x more than PQC migration
  • Onchain project teams and protocol developers: start now to understand the engineering cost of PQC, signature size, key management changes — actual migration may still be years out, but roadmap design needs to factor in PQC now

For more basic security practices, see hardware wallet supply chain risk and metamask phishing defense99% of asset losses today aren’t due to quantum computers, they’re due to phishing or private key mishandling.

Key timeline milestones around this point

A few important time points around 2026:

  • 2024: NIST formally publishes ML-KEM, ML-DSA, SLH-DSA as the three core PQC standards
  • 2025: Mainstream browsers (Chrome, Firefox) start defaulting to hybrid PQC + legacy at the TLS layer
  • 2026 current: Bitcoin BIP discussions continue to progress; Ethereum core research puts PQC on the long-term roadmap; institutions begin adopting PQC for long-horizon key management
  • 2027-2030 expected: Onchain projects start shipping optional PQC signature schemes; PQC clauses begin appearing in institutional compliance requirements
  • Beyond 2035: Industry median estimate for when “cryptographically relevant quantum computers” might emerge

No one can give a precise date for “threat materialization” — worst case it arrives years earlier than expected, best case it slides a decade out — but the 2026 framing has shifted from “will it happen” to “how soon before it happens”.

A judgment worth keeping on long-term radar

Post-quantum cryptography isn’t a topic that wraps up in 2026 — it’s a decade-spanning reshape of onchain cryptographic foundations. Today its impact on regular users is effectively zero, on protocol designers it begins to show, and on long-term asset protection it becomes a mainstream topic five to ten years out. Understanding the structure ahead of time beats reacting under crisis conditions. This article isn’t asset-allocation or technical-selection advice — PQC algorithms, onchain implementation paths, and attacker capability development all evolve dynamically, and independent tracking of NIST and mainstream protocol official channels is on you.

Horizontal evolutionary timeline showing post quantum cryptography milestones from NIST standardization to onchain migration completion