Skip to content

Shor's Algorithm

Quantum period-finding ยท QFT ยท continued fractions

Factor an integer N by turning it into quantum order-finding: extract the period of a mod N via the QFT and continued fractions, then recover the factors with gcd(a^(r/2)ยฑ1, N).

What is Shor's Algorithm?

Back in 1994, mathematician Peter Shor had a brilliant insight: a quantum computer could factor large numbers exponentially faster than any classical method. It's one of the most dazzling results in computer science โ€” and the spark that launched the whole field of post-quantum cryptography.

The problem it solves

Split a big integer N back into its prime building blocks. For a 2048-bit number, the best classical algorithm (GNFS) would chew on it for billions of years โ€” Shor's algorithm wraps it up in hours. ๐Ÿš€

Why it's a big deal

RSA, ECC, and Diffie-Hellman โ€” the encryption guarding nearly every website, bank, and message โ€” all lean on factoring being hard. Shor's algorithm flips that on its head, and that's exactly why it's so exciting to explore.

The clever trick

Here's the magic: Shor reframes factoring as a period-finding puzzle, then lets a quantum Fourier transform spot that period in a single elegant shot. Fire up the demo below and watch it unfold step by step!

Presets:

Shor is randomized: each run picks a fresh base a and can fail and retry. Try N = 21 or 91 and run it several times โ€” watch the base, the period, and the retry path change every time.

Why does the period r let you factor N?

Pick a base a and look at its order r โ€” the smallest power with ar โ‰ก 1 (mod N). That one fact is a factoring machine:

  1. ar โ‰ก 1 means ar โˆ’ 1 โ‰ก 0 (mod N).
  2. If r is even, factor the left side as a difference of squares: (ar/2 โˆ’ 1)(ar/2 + 1) โ‰ก 0 (mod N).
  3. So N divides that product. Unless ar/2 โ‰ก ยฑ1 (the two dead-ends the demo retries past), N's prime factors must split between the two factors โ€” so each shares a real factor with N.
  4. Peel them off with the fast, classical gcd(ar/2 ยฑ 1, N).
This run: run the algorithm and the exact numbers from your factorisation appear here.

The quantum computer's only job is finding r. Everything above is ordinary arithmetic โ€” which is why the whole attack collapses to "find the period fast."

Why does the QFT concentrate at multiples of Q/r?

After order-finding, the register holds every input x that shares one f(x) = ax mod N value โ€” an evenly spaced comb xโ‚€, xโ‚€+r, xโ‚€+2r, โ€ฆ The QFT gives each state a phase that spins as a clock hand, at a rate set by the frequency m you might measure.

  • At a frequency m where mยทr/Q is a whole number, every hand in the comb points the same way โ€” they add up (constructive interference). That happens exactly at m = kยทQ/r.
  • At any other m the hands fan out around the circle and cancel (destructive interference) โ€” near-zero probability.

So a single measurement almost always lands on a spike at kยทQ/r. The phasor wheels below animate exactly this โ€” watch the hands align at the period and scatter off it. (classically simulated)

ALGORITHM STEPS

Enter N and press โ–ถ Run Shor's Algorithm to begin.

PERIOD TABLE / QFT VISUALIZATION

Visualization will appear here after running the algorithm.

RSA IMPACT

FACTORING COMPLEXITY AT RSA-2048

RESOURCE REQUIREMENTS

Target Logical Qubits Physical Qubits (est.) Threat Timeline
RSA-512~1,030~500KAlready broken classically
RSA-2048~4,100<1M (Gidney, 2025)10โ€“25 years
RSA-4096~8,200~2M15โ€“30 years
ECC P-256~2,330<500K (Google, 2026)10โ€“20 years
ECC P-384~3,500~750K15โ€“25 years

Largest verified error-corrected demonstration to date: 96 logical qubits (QuEra, Nature, Jan 2026) โ€” and at far lower code distance than Shor needs
Gap to RSA-2048: ~4,100 logical qubits needed

โ–ถ Why Shor breaks ECC too

Shor's algorithm also solves the discrete logarithm problem โ€” the mathematical foundation of ECC and Diffie-Hellman.

ECC P-256 security (classical): 2128 operations
ECC P-256 security (quantum): no exponential margin left โ€” the cost drops to a polynomial in the key length (~109 quantum gates), not an exponential in it

ECDH, ECDSA, and all ECC-based protocols are equally vulnerable. Smaller key sizes make ECC faster to break than RSA on a quantum computer.

QUANTUM-RESISTANT AFTER SHOR

  • โœ“ AES-256 โ€” Grover reduces to 128-bit effective โ€” still strong
  • โœ“ SHA-3 โ€” Grover halves preimage resistance (SHA3-256 โ†’ ~2128) โ€” still usable
  • โœ“ ML-KEM (Kyber) โ€” Lattice problems โ€” no known efficient quantum attack
  • โœ“ ML-DSA โ€” Lattice problems โ€” no known efficient quantum attack
  • โœ“ SLH-DSA โ€” Hash-based โ€” quantum-safe by design
  • โœ“ BB84 QKD โ€” Physics-based โ€” immune to all computational attacks
  • โœ— RSA (any size) โ€” Broken by Shor
  • โœ— ECC (any curve) โ€” Broken by Shor
  • โœ— Diffie-Hellman โ€” Broken by Shor

“No known efficient quantum attack” is the precise claim for the lattice schemes โ€” not “no quantum speedup at all.” Grover-accelerated lattice sieving does shave a sub-exponential factor off the best known attack, which is why NIST’s ML-KEM/ML-DSA parameter sets already price a quantum sieve in. What no one has is a polynomial-time quantum algorithm for the underlying lattice problems, the way Shor is one for factoring.

Run the algorithm above to see a live demo.