Skip to content
QuantascanAlpha

Why QRL is quantum-resistant

How quantum computers threaten today's cryptography, why "harvest now, decrypt later" is the real concern, and what post-quantum cryptography actually means.

7 min readUpdated 2026-01-15

On this page

Almost every cryptocurrency in use today — Bitcoin, Ethereum, Solana, you name it — depends on elliptic-curve digital signatures (ECDSA) to prove that the holder of a private key authorised a transaction. ECDSA is fast, compact, and battle-tested against classical computers.

It's not safe against quantum computers.

The actual threat

In 1994, mathematician Peter Shor published an algorithm that, given a sufficiently large and stable quantum computer, can factor large integers and solve the elliptic-curve discrete logarithm problem. Both are problems whose hardness underlies classical public-key cryptography. Shor's algorithm doesn't slowly grind through possibilities the way classical brute-force does — it solves these problems in polynomial time, which is categorically faster.

What this means concretely: a quantum computer running Shor's algorithm could take an ECDSA public key and derive the matching private key from it.

What a large quantum computer does to each signature family: Shor's algorithm derives the private key from ECDSA and RSA, breaking them, while hash-based (XMSS) and lattice-based (ML-DSA-87) schemes face only Grover's algorithm — a mere square-root speed-up — and stay secure.ECDSA · RSAelliptic-curve & factoringShor's algorithmderives the private keyBroken by quantumHash-based · LatticeXMSS · ML-DSA-87Grover's algorithmonly a √ speed-upStays secure
Shor's algorithm breaks the number-theory schemes (ECDSA, RSA); hash-based and lattice-based post-quantum schemes only face Grover's square-root speed-up and stay secure.

A few important caveats:

  • No quantum computer that exists today can do this at cryptographically-relevant scale. The largest publicly-disclosed quantum systems have on the order of 1000 noisy qubits; breaking ECDSA requires millions of high-fidelity qubits.
  • Timeline estimates vary wildly. Optimists (or pessimists, depending on your seat) say within 10-15 years; sceptics argue practical fault-tolerant quantum computers may never arrive. Nobody knows.
  • The threat is asymmetric. Even a 1% probability of breakage within the lifetime of your savings is, for many people, an unacceptable tail risk.

"Harvest now, decrypt later"

The most plausible attack vector isn't a future quantum computer rewriting today's transactions — it's an adversary that records public-key data today, stores it, and decrypts it years from now when quantum hardware matures.

For a blockchain this matters because every transaction reveals the sender's public key. The moment you sign a transaction with an address, that address's public key is on chain forever. If quantum computers arrive in 15 years, every public key recorded today is at risk.

This is why "we can migrate when we need to" is not a satisfying answer. By the time a working quantum computer is announced, the historical record is already exposed.

What "post-quantum" actually means

Post-quantum cryptography (PQC) is a family of cryptographic schemes whose security does not rest on the problems Shor's algorithm efficiently solves. Active research areas include:

  • Hash-based signatures — security follows from the difficulty of inverting cryptographic hash functions. Includes XMSS, LMS, SPHINCS+. QRL Legacy uses XMSS.
  • Lattice-based cryptography — security rests on the hardness of finding short vectors in high-dimensional lattices. Includes ML-KEM (encryption) and ML-DSA (signatures, formerly known as Dilithium). QRL 2.0 uses ML-DSA-87.
  • Code-based cryptography — security from the difficulty of decoding random linear codes (e.g. McEliece).
  • Multivariate cryptography — security from solving systems of multivariate quadratic equations.

In 2024 NIST finalised its first three post-quantum standards: ML-KEM (key encapsulation), ML-DSA (signatures), and SLH-DSA (stateless hash-based signatures). These are the schemes the U.S. federal government will move to. Picking schemes from this set means betting on cryptography that has been publicly analysed for over a decade by hundreds of researchers.

Trade-offs

Post-quantum signatures aren't a free upgrade. Compared to ECDSA they tend to have:

  • Larger keys and signatures — kilobytes instead of dozens of bytes. This affects transaction sizes and on-chain storage costs.
  • Slower signing or verification (depending on the scheme).
  • State for one-time hash-based schemes (XMSS requires careful key management — never sign the same one-time key twice).

These trade-offs are why most chains haven't migrated yet: there's no urgent threat today, and the costs are visible. Chains designed around PQC from day one — like QRL — absorbed these costs in their core protocol design rather than retrofitting later.

Why this matters for you

If you hold any cryptocurrency today, your risk profile depends on:

  1. Whether you believe practical quantum computers will arrive within the lifetime of your holdings, and
  2. Whether the chain you hold can migrate before that happens.

QRL is one of the few chains where the answer to #2 is "the design already anticipated it." That doesn't make it the best chain on every other dimension — it just removes one specific tail risk.

For how QRL puts this into practice across its two chains — XMSS on QRL Legacy, ML-DSA-87 on QRL 2.0 — see what is QRL.

FAQ about Why QRL is quantum-resistant

Common questions about this page
When will quantum computers break Bitcoin?
Nobody knows. Estimates range from 10-15 years to never. Today's largest quantum computers have on the order of 1,000 noisy qubits; breaking ECDSA needs millions of high-fidelity qubits. The risk is the uncertainty, not a confirmed date.
Can a quantum computer steal my crypto?
In theory a future large quantum computer running Shor's algorithm could derive a private key from a public key and drain wallets whose public key is exposed. That is why 'harvest now, decrypt later' matters — public keys recorded today could be attacked once the hardware matures.
Is XMSS NIST-approved?
XMSS is a standardized hash-based signature (IETF RFC 8391, also recommended in NIST SP 800-208). QRL Legacy uses it. QRL 2.0 uses ML-DSA-87, part of NIST's 2024 post-quantum standards.
Does QRL use Dilithium?
QRL 2.0 signs with ML-DSA-87, the NIST-standardized form of the Dilithium signature family. QRL Legacy uses XMSS instead. Other schemes exist in QRL's crypto libraries but are not used for signing on chain.