The 9-Minute Problem: How Google’s March 30 Quantum Paper Changed Cryptographic Security

작성자

카테고리:

← 피드로
DEV Community · Alfio Musumeci · 2026-08-11 개발(SW)

How a 20× reduction in quantum resources is changing the timeline for cryptographic security

On March 30, 2026, Google Quantum AI published a 57-page research paper that deserves considerably more attention from the cybersecurity and software engineering communities.

The paper, “Securing Elliptic Curve Cryptocurrencies against Quantum Vulnerabilities: Resource Estimates and Mitigations,” was written by researchers from Google Quantum AI, the Ethereum Foundation, and Stanford University.

It does not claim that Bitcoin can be hacked today.

It does not claim that a cryptographically relevant quantum computer already exists.

Instead, it addresses a much more fundamental question:

How much quantum hardware would actually be required to break the elliptic-curve cryptography used by modern blockchain systems?

The answer is considerably smaller than previous estimates suggested.

The researchers show that an optimized implementation of Shor’s algorithm could solve the 256-bit Elliptic Curve Discrete Logarithm Problem (ECDLP-256) using approximately:

  • 1,200–1,450 logical qubits
  • 70–90 million Toffoli gates
  • fewer than 500,000 physical qubits under the paper’s superconducting architecture assumptions

Previous estimates had placed the physical hardware requirement in the millions.

That reduction changes the engineering discussion.

And one particular number makes the problem especially interesting:

approximately nine minutes.

What Is ECDLP-256?

Before discussing the quantum attack, it is worth understanding what is actually being attacked.

Bitcoin uses the secp256k1 elliptic curve for its digital signatures.

The security model is based on the difficulty of solving the Elliptic Curve Discrete Logarithm Problem, or ECDLP.

In simplified terms, the system works like this:

Private Key
    |
    | elliptic-curve operation
    v
Public Key

Enter fullscreen mode Exit fullscreen mode

The public key can be derived from the private key relatively efficiently.

The reverse operation is supposed to be computationally infeasible.

That asymmetry is exactly what we want from a public-key cryptographic system.

You can publish your public key without revealing your private key.

Classical computers cannot practically reverse the operation.

The problem is that a sufficiently powerful fault-tolerant quantum computer can use Shor’s algorithm to solve discrete logarithms efficiently.

The cryptographic assumption therefore changes fundamentally.

It is not that the implementation becomes vulnerable.

The mathematical problem that provides the security becomes tractable.

The March 30 Optimization

The significance of Google’s research is not that Shor’s algorithm suddenly became possible.

The vulnerability has been known since the 1990s.

The important development is the reduction in the resources required to execute it.

The paper presents two optimized circuit configurations:

Configuration Logical Qubits Toffoli Gates Low-qubit variant ≤ 1,200 ≤ 90 million Low-gate variant ≤ 1,450 ≤ 70 million

The physical implementation is estimated at less than 500,000 physical qubits under the paper’s superconducting assumptions.

For comparison, earlier resource estimates placed the requirement several times higher, with some photonic architectures requiring millions of physical qubits.

The report accompanying the research identifies this as roughly a 20× reduction in the physical-qubit requirement compared with earlier benchmarks.

This is the number that should get the attention of security engineers.

Not because 500,000 qubits is close to today’s hardware.

It isn’t.

But because the target moved.

Physical Qubits vs. Logical Qubits

One of the easiest ways to misunderstand the paper is to treat “1,200 qubits” and “500,000 qubits” as competing estimates.

They are measuring different things.

A physical qubit is a hardware-level quantum information unit.

Physical qubits are noisy.

They experience:

  • gate errors
  • measurement errors
  • decoherence
  • control imperfections
  • crosstalk

A logical qubit is an error-corrected quantum information unit constructed from many physical qubits.

The relationship looks approximately like:

Physical Qubits
      |
      | Quantum Error Correction
      v
Logical Qubits
      |
      v
Fault-Tolerant Computation

Enter fullscreen mode Exit fullscreen mode

The paper estimates that the cryptanalytic algorithm itself requires roughly 1,200–1,450 logical qubits.

The hardware implementation then expands that requirement to fewer than 500,000 physical qubits under the assumed architecture.

This distinction matters enormously when evaluating quantum hardware roadmaps.

The relevant question is no longer:

“How many qubits does this machine have?”

It is:

“How many fault-tolerant logical qubits can this machine operate, at what gate speed and error rate?”

Why the Runtime Matters More Than the Qubit Count

The most interesting consequence of the March 30 paper isn’t actually the qubit count.

It is the execution time.

The low-gate configuration requires approximately 70 million Toffoli gates.

Under the superconducting execution assumptions described by the research, the complete computation takes approximately:

18 minutes.

But there is an important optimization.

Part of Shor’s algorithm depends only on fixed parameters of the elliptic curve and can therefore be prepared in advance.

The quantum computer can effectively be primed before the target transaction appears.

Once a target becomes available, the remaining computation can be completed in approximately:

9 minutes.

That distinction creates an entirely different security model.

Instead of asking:

“Can a quantum computer eventually recover the private key?”

we have to ask:

“Can it recover the private key before the transaction becomes irreversible?”

That is the real security problem.

The Bitcoin Mempool Attack

Bitcoin transactions are not immediately final when a wallet broadcasts them.

They enter the network’s transaction pool, commonly called the mempool, before being included in a block.

The process can be simplified as:

Wallet
   |
   | Signed Transaction
   v
Network
   |
   v
Mempool
   |
   | ~10 minutes average
   v
Bitcoin Block
   |
   v
Confirmation

Enter fullscreen mode Exit fullscreen mode

The quantum attacker wants to exploit the interval between the transaction entering the public network and the transaction becoming part of the blockchain.

Once the relevant public-key information is exposed, the attacker could theoretically execute the quantum computation needed to derive the corresponding private key.

If the computation completes before confirmation, the attacker could potentially create a competing transaction.

The paper’s low-gate superconducting scenario estimates approximately 9 minutes for the primed key-recovery stage.

Bitcoin’s average block interval is approximately 10 minutes.

Those two numbers are uncomfortably close.

The technical report accompanying the research estimates an approximately 41% probability of completing the relevant computation within the Bitcoin confirmation window under the specified assumptions.

Again, this is not an attack that works today.

It is a projected attack against a future cryptographically relevant quantum computer.

But the important observation is:

The execution window is no longer measured in days.

It is measured in minutes.

Why Ethereum Has a Different Problem

Ethereum’s Layer 1 has much shorter block/slot timing.

An Ethereum slot is approximately 12 seconds.

A nine-minute quantum computation therefore does not fit naturally into the same type of real-time mempool attack.

That does not make Ethereum quantum-safe.

It simply changes the attack model.

Ethereum has several additional cryptographic dependencies, including:

  • ECDSA account signatures
  • BLS validator signatures
  • KZG commitments
  • zero-knowledge proof systems

The threat therefore extends beyond transaction front-running.

A sufficiently capable quantum computer could potentially derive private keys from exposed public keys, forge validator signatures, and compromise other cryptographic assumptions embedded throughout the protocol stack.

The result is a broader attack surface.

Bitcoin’s most intuitive quantum problem is:

Can someone steal funds?

Ethereum’s problem includes:

Can someone compromise accounts, validators, commitments, applications, or other cryptographic infrastructure?

The Dormant Bitcoin Problem

The real nightmare may not be transactions happening in real time.

It may be the coins that have been sitting untouched for years.

The paper identifies approximately 1.7 million BTC associated with historical Pay-to-Public-Key outputs.

Additional vulnerable funds arise from address reuse and other historical transaction patterns.

The accompanying technical report estimates approximately 2.3 million BTC of potentially quantum-vulnerable dormant assets.

These assets create a fundamentally different attack scenario.

The attacker doesn’t have a ten-minute deadline.

They can run the quantum computation offline.

The attack becomes:

Public Key
    |
    | Quantum computation
    v
Private Key
    |
    v
Control of dormant asset

Enter fullscreen mode Exit fullscreen mode

No mempool.

No race.

No confirmation window.

No need to compromise the original owner.

This is an at-rest attack.

And it creates a problem that cannot be solved purely through cryptographic engineering.

What Happens to Lost Bitcoin?

Consider a Bitcoin address whose owner lost the private key ten years ago.

Today, those coins are effectively inaccessible.

The blockchain does not know whether the owner is:

  • alive
  • dead
  • inactive
  • permanently locked out
  • deliberately holding the asset
  • or simply using a long-term storage strategy

A quantum computer changes the situation.

If the public key is exposed and the private key becomes computationally recoverable, someone could potentially claim those assets.

But who should own them?

The original owner?

The quantum attacker?

Should the protocol freeze them?

Should they be destroyed?

Should a legal process determine ownership?

This is where quantum cryptography becomes blockchain governance.

The March 30 paper discusses policy mechanisms around dormant quantum-vulnerable assets precisely because cryptography alone cannot answer these questions.

A mathematical breakthrough can create a legal problem.

The Threat Is Larger Than Signatures

It would be a mistake to summarize the paper as:

“Quantum computers will break Bitcoin signatures.”

Elliptic-curve cryptography is embedded throughout modern infrastructure.

ECC appears in systems involving:

  • TLS
  • authentication
  • SSH
  • software signing
  • firmware updates
  • secure boot
  • cloud infrastructure
  • identity systems
  • IoT devices
  • messaging
  • digital certificates

The paper therefore has implications far beyond cryptocurrency.

Cryptocurrency is simply an unusually visible example because a valid cryptographic signature can translate directly into control over an economic asset.

In traditional systems, compromising a cryptographic key may trigger:

  • account freezes
  • certificate revocation
  • fraud detection
  • incident response
  • transaction reversal

Blockchains often provide none of those mechanisms.

A valid signature can be sufficient.

And once the transaction is finalized, there may be no central authority capable of reversing it.

The KZG Problem

There is another vulnerability that receives less attention.

Ethereum’s scaling infrastructure uses KZG polynomial commitments.

These commitments depend on elliptic-curve pairings and a trusted setup.

A sufficiently powerful quantum computer could potentially recover information associated with the setup and use it to construct fraudulent commitments or proofs.

This illustrates an important principle:

Post-quantum migration is not simply a matter of replacing wallet signatures.

Entire cryptographic subsystems may need to be redesigned.

The Zero-Knowledge Proof Behind the Paper

There is an especially interesting security decision in the research itself.

The researchers did not publish every optimized circuit detail.

Why?

Because publishing the complete attack circuit could reduce the cost of reproducing the attack for future adversaries.

That creates a difficult scientific trade-off.

Researchers normally want:

reproducibility.

Security researchers also want:

responsible disclosure.

Google addressed this by constructing a zero-knowledge proof demonstrating the correctness of the relevant resource estimates without publishing the full attack circuit.

According to the technical material accompanying the paper, the proof evaluated thousands of point-addition test instances and used a Groth16-based SNARK architecture.

The idea is conceptually elegant:

Research Team
     |
     | "We have a valid optimized circuit"
     v
Zero-Knowledge Proof
     |
     | Verify correctness
     v
Scientific Community

Without revealing:
     ↓
Complete attack circuit

Enter fullscreen mode Exit fullscreen mode

The researchers can therefore provide evidence that their resource estimates correspond to valid quantum computation without handing over a ready-to-run cryptanalytic blueprint.

That is an important precedent for future quantum-security research.

Why This Paper Changes the Security Timeline

The most important consequence of the March 30 publication is not that the world suddenly became vulnerable.

The cryptographic vulnerability has been known for decades.

What changed is the estimated distance between the vulnerability and practical quantum hardware.

Consider the progression.

Earlier assumption

Quantum attacks require millions of physical qubits and extremely long execution times.

Therefore:

Quantum risk is distant.

March 30 result

Optimized ECDLP circuits may require fewer than 500,000 physical qubits under the stated superconducting assumptions.

And the relevant attack stage can potentially execute in minutes.

Therefore:

Quantum risk must be evaluated against hardware roadmaps rather than treated as an abstract theoretical problem.

That is a major change in cybersecurity planning.

Quantum Hardware Becomes a Security Metric

Traditionally, quantum hardware benchmarks focused on:

  • qubit count
  • gate fidelity
  • coherence
  • circuit depth
  • quantum volume

The March 30 research suggests another way of looking at hardware progress.

Suppose a quantum processor improves its logical gate rate by an order of magnitude.

That is not merely a performance improvement.

It could shorten a cryptanalytic attack from:

hours → minutes

or:

minutes → seconds.

Similarly, reducing error-correction overhead does more than make quantum computers cheaper.

It potentially reduces the number of physical qubits required to attack today’s cryptography.

This creates a new category of benchmark:

Cryptographic relevance.

The important question becomes:

How close is this hardware architecture to executing the circuits required to break real-world cryptographic systems?

Why Organizations Cannot Wait for Q-Day

There is a common misconception surrounding post-quantum cryptography.

It sounds like the migration can begin when quantum computers become powerful enough to threaten RSA and ECC.

That is backwards.

Large-scale cryptographic migrations can take years.

Organizations need to:

  1. discover where vulnerable cryptography is being used;
  2. identify dependencies on third-party systems;
  3. inventory certificates and public keys;
  4. identify hardware that cannot easily be upgraded;
  5. introduce cryptographic agility;
  6. deploy post-quantum algorithms;
  7. test interoperability;
  8. migrate legacy systems.

And many encrypted communications have long confidentiality lifetimes.

This creates the familiar:

Harvest Now, Decrypt Later

problem.

An adversary can capture encrypted information today and store it.

The information does not need to be useful today.

If it remains sensitive for 10, 20, or 30 years, future quantum capabilities may eventually make it readable.

This means that the relevant deadline is not:

“The day a CRQC appears.”

It is:

“The amount of time required to migrate before a CRQC becomes practical.”

What Should Developers Take Away?

For software engineers, this may sound like a problem for cryptographers.

It isn’t.

Cryptographic dependencies exist everywhere in modern software.

Developers should increasingly assume that cryptographic algorithms are replaceable components, not permanent foundations.

That means avoiding designs where an application is tightly coupled to a single algorithm.

Instead of:

Application
     |
     v
ECDSA

Enter fullscreen mode Exit fullscreen mode

think:

Application
     |
     v
Cryptographic Interface
     |
     +---- ECDSA
     |
     +---- ML-DSA
     |
     +---- Future PQC Algorithm

Enter fullscreen mode Exit fullscreen mode

This is the principle of cryptographic agility.

The exact algorithm that will dominate every use case in the post-quantum era is still an evolving engineering question.

The architecture should therefore make replacement possible.

The Most Important Number Isn’t 500,000

The headline number from March 30 is:

<500,000 physical qubits.

But I think the more important number is:

9 minutes.

Because qubit counts describe the size of a machine.

Execution time describes what the machine can actually do against a live system.

A quantum computer with 500,000 physical qubits that requires days to execute the relevant computation has a very different threat profile from one that can perform it in minutes.

For blockchain systems, the difference can determine whether an attack is:

theoretical

or

operational.

Final Thoughts

The March 30 Google Quantum AI paper should not be interpreted as a prediction that Bitcoin will be hacked tomorrow.

That would be sensationalism.

Its real significance is more subtle.

The paper demonstrates that the computational resources required to attack 256-bit elliptic-curve cryptography may be substantially lower than previous estimates suggested.

That changes how we should think about the quantum threat.

The important question is no longer simply:

Can quantum computers break ECC?

We already know the theoretical answer.

The better question is:

How quickly can quantum hardware move from theoretical capability to operational cryptanalysis?

If that transition can eventually happen in minutes rather than days, blockchain systems with transaction windows measured in minutes acquire a fundamentally different risk profile.

And for the rest of the Internet, the problem is even larger.

ECC is not confined to cryptocurrencies.

It is embedded in the authentication, communication, identity and software infrastructure that modern computing depends upon.

The March 30 paper therefore represents something more important than another quantum-computing benchmark.

It is a reminder that cryptographic security has an expiration date when the mathematics behind it becomes efficiently solvable.

The quantum computer capable of exploiting that fact may not exist today.

But the systems that will need to survive it already do.

And migrating them will take time.

The real question is not when Q-Day arrives.

It is whether we will finish migrating before it does.

원문에서 계속 ↗

코멘트

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다