Will Quantum Computers Break Sui?
Will quantum computers break Sui? It is one of the sharper questions in crypto security right now, and it deserves a precise answer rather than vague reassurance or scaremongering. Sui uses elliptic-curve cryptography to secure wallets and sign transactions, the same family of algorithms that underpins Bitcoin, Ethereum, and almost every other major blockchain. This article walks through exactly how that scheme works, what a sufficiently powerful quantum computer could do to it, what realistic timelines look like, and what Sui holders can do today to reduce their exposure.
How Sui Secures Wallets and Transactions
Sui supports multiple signature schemes, but the default and most widely used is Ed25519, an elliptic-curve digital signature algorithm built on Curve25519. When you create a Sui wallet, the protocol generates a private key and derives a corresponding public key using elliptic-curve point multiplication. Your wallet address is derived from that public key.
When you send a transaction, your wallet software:
- Constructs the transaction data.
- Signs it with your private key, producing a signature unique to that transaction.
- Broadcasts the signed transaction; network validators verify it using your public key without ever seeing your private key.
The security assumption is that deriving a private key from a public key is computationally infeasible on classical hardware. Specifically, it relies on the elliptic-curve discrete logarithm problem (ECDLP). On a classical computer, the best-known algorithms for this require exponential time, making a brute-force attack against a 256-bit curve practically impossible.
Why the ECDLP Matters for Quantum Resistance
Shor's algorithm, published in 1994, demonstrated that a quantum computer with enough stable qubits can solve the ECDLP in *polynomial* time. That collapses the security assumption entirely. Given a public key and a quantum computer running Shor's algorithm, an attacker could derive the corresponding private key and sign arbitrary transactions on the victim's behalf.
Ed25519's 256-bit curve does not help here. The quantum speedup Shor's algorithm provides is not a marginal improvement; it is a qualitative change in the class of problem being solved. Doubling the key size would not save it.
Sui also supports secp256k1 and secp256r1 as optional signature schemes (useful for compatibility with hardware wallets and existing Ethereum tooling). Both are equally vulnerable to Shor's algorithm.
---
What Would Have to Be True for Quantum Computers to Break Sui
Breaking Sui's cryptography requires a Cryptographically Relevant Quantum Computer (CRQC), a machine capable of running Shor's algorithm against a 256-bit elliptic curve at scale. Current estimates suggest this requires somewhere between 1 million and 4 million physical qubits with very low error rates. The best publicly available machines as of 2024 operate in the range of 1,000 to 2,000 physical qubits with error rates that are still far too high for Shor's algorithm to complete before decoherence disrupts the computation.
Three conditions would need to be met simultaneously:
- Sufficient qubit count. Physical qubit counts must scale by roughly three orders of magnitude beyond current leaders.
- Error correction maturity. Logical error rates must fall to a level where long computations remain coherent. Current logical qubits require hundreds to thousands of physical qubits each for error correction overhead.
- Algorithm optimisation. Practical implementations of Shor's algorithm on real hardware are still far from the theoretical minimums; engineering overhead adds significantly to requirements.
None of these conditions exist today. The gap between current hardware and a CRQC is not a rounding error.
The "Harvest Now, Decrypt Later" Consideration
There is one asymmetric risk worth understanding. An adversary could record encrypted traffic or blockchain data today and decrypt it once a CRQC becomes available. For blockchain transactions, this is a limited threat because transaction data is already public. However, if your public key is exposed on-chain (which it is, after your first outbound transaction from a wallet), a future CRQC could derive your private key and drain remaining funds at Q-day.
Wallets that have never sent a transaction, where only the address is public and the public key has not yet been broadcast, carry somewhat less immediate exposure. But that protection evaporates the moment the first transaction is signed.
---
Realistic Timeline: When Could Q-Day Arrive?
Expert opinion varies considerably. The table below summarises the range of credible public estimates:
| Source / Estimate | Projected CRQC Capability |
|---|---|
| NIST PQC migration guidance (2024) | Organisations should complete migration by 2030–2035 |
| IBM quantum roadmap (public) | Fault-tolerant quantum computing targeted in the 2030s |
| Global Risk Institute (2023 survey) | 50% of respondents: >15 years; 17%: 5–10 years |
| NCSC (UK) guidance | "Quantum threat is not imminent but planning must begin now" |
| Mosca's Theorem (academic framework) | Migration lead time + shelf life of data > time to CRQC |
The central-case view among researchers is that a CRQC capable of breaking 256-bit elliptic-curve cryptography is unlikely before 2030, and more probably arrives in the 2030–2040 window. A small but non-trivial minority of analysts put it earlier.
The policy implication of Mosca's Theorem is important: if it takes a blockchain ecosystem five to seven years to fully migrate its cryptographic primitives, and if Q-day could be ten years away, migration work arguably needs to start now. Waiting for confirmed CRQC existence before acting is almost certainly too late.
What NIST's Post-Quantum Standards Mean for Blockchain
In 2024, NIST finalised its first set of post-quantum cryptography (PQC) standards. The primary ones relevant to digital signatures are:
- ML-DSA (CRYSTALS-Dilithium), based on lattice problems.
- SLH-DSA (SPHINCS+), based on hash functions.
- FALCON, also lattice-based, suited to compact signatures.
These algorithms are designed to resist both classical and quantum attacks. They do not rely on the ECDLP. Their security assumptions rest on problems, such as the Module Learning With Errors (MLWE) problem, that no known quantum algorithm can solve efficiently.
---
Sui's Current Posture and Potential Migration Path
Sui's codebase and protocol governance are controlled by the Sui Foundation and its broader validator and developer community. Sui's architecture has some properties that could make a future PQC migration less painful than older blockchains:
- Move language allows smart contracts to be upgraded with reduced friction compared to EVM chains.
- Object-centric model means wallet state is tied to objects, not just addresses, potentially simplifying key rotation schemes.
- Multi-sig and zkLogin features show the protocol is already designed to accommodate varied authentication models.
However, no formal PQC migration roadmap has been published as of mid-2025. The core signature verification logic would require a protocol-level hard fork to swap in a post-quantum scheme. Validators, wallet providers, and dApp developers would all need to coordinate. This is a multi-year undertaking for any large blockchain.
What Sui Holders Can Do Right Now
The risk today is low but not zero, and practical steps are available:
- Rotate to fresh wallets periodically. Using a wallet address only once limits the time window your public key is exposed on-chain. This is not standard practice but reduces long-term risk.
- Monitor Sui Foundation announcements. If a PQC working group or SIP (Sui Improvement Proposal) emerges, that is a leading indicator of official migration timelines.
- Avoid concentrating large, long-term holdings in wallets with heavy on-chain history. The more transactions signed from an address, the longer its public key has been visible.
- Watch for hardware wallet PQC support. Ledger and similar vendors are beginning research into PQC-capable secure elements; support for NIST-standard schemes would significantly improve the hardware security layer.
- Diversify across cryptographic risk profiles. Protocols that have been built from the ground up with post-quantum primitives carry a fundamentally different security profile to those planning a future migration.
---
How Natively Post-Quantum Designs Differ
The difference between retrofitting PQC onto an existing blockchain and building with it from the start is significant. A protocol designed around lattice-based or hash-based signatures does not need to schedule a hard fork, coordinate validator upgrades, or manage a transition period where both old and new key schemes coexist on the same network.
BMIC.ai is one example of a wallet and token project built with NIST PQC-aligned cryptography as a foundational layer rather than a planned future upgrade. Its lattice-based approach means the Q-day exposure that affects Sui and every other ECDSA/EdDSA chain is not a deferred problem to solve later; it is addressed in the initial architecture. For holders thinking about long-term cryptographic security, the distinction between "we plan to migrate" and "we are already post-quantum" is material.
For Sui specifically, the honest assessment is that its current signature schemes are theoretically vulnerable to a CRQC, a migration is technically feasible but has not been formally scheduled, and the practical risk today is minimal given current hardware. The risk is real on a ten-to-twenty-year horizon, and preparation should begin well before it becomes urgent.
---
Summary: The Balanced View
Quantum computers will not break Sui tomorrow, or likely this decade under central-case assumptions. But the mechanisms are well-understood, the timeline is not infinite, and the migration complexity for a live layer-1 blockchain is non-trivial. The intellectually honest position is:
- Short term (now to ~2028): Risk is negligible given current quantum hardware.
- Medium term (2028–2035): Risk escalates if quantum hardware progress exceeds current projections; migration planning should be well underway.
- Long term (post-2035): Protocols without a completed PQC migration could face a genuine existential cryptographic risk.
Sui's modern architecture gives it better migration prospects than many older chains. Whether the Sui Foundation moves early enough to stay well ahead of Q-day depends on governance decisions that have not yet been made.
Frequently Asked Questions
Will quantum computers break Sui's Ed25519 signatures?
Yes, in principle. Ed25519 relies on the elliptic-curve discrete logarithm problem, which Shor's algorithm can solve efficiently on a sufficiently powerful quantum computer. A Cryptographically Relevant Quantum Computer (CRQC) does not exist yet, but if one is built, it could derive Sui private keys from public keys exposed on-chain.
How many qubits would be needed to break Sui's cryptography?
Estimates vary, but most research places the requirement at between 1 million and 4 million physical qubits with very low error rates. Current publicly available quantum computers operate in the 1,000–2,000 qubit range with error rates too high for Shor's algorithm to complete successfully. The gap between today's hardware and a CRQC is large.
Is my Sui wallet at risk right now?
No, not from quantum computers. The quantum hardware required to attack Ed25519 does not currently exist. Your Sui wallet faces the same classical security risks as any other crypto wallet, such as phishing, malware, and seed-phrase exposure, none of which are quantum-related.
Could Sui upgrade to post-quantum cryptography?
Yes. Sui's architecture, including its Move-based smart contracts and object-centric model, is more upgrade-friendly than many older blockchains. A protocol-level migration to a NIST-approved post-quantum signature scheme like ML-DSA (CRYSTALS-Dilithium) would require a coordinated hard fork. No formal migration roadmap has been published as of mid-2025.
What is the difference between a post-quantum wallet and a regular crypto wallet?
A regular crypto wallet uses elliptic-curve cryptography (Ed25519, secp256k1, etc.) for key generation and signing. These schemes are vulnerable to Shor's algorithm on a CRQC. A post-quantum wallet uses algorithms like lattice-based or hash-based schemes (NIST standards: ML-DSA, SLH-DSA) whose security does not rely on problems a quantum computer can solve efficiently.
Should Sui holders do anything about quantum risk today?
The immediate risk is low, but sensible precautions include: monitoring Sui Foundation announcements for any PQC working group activity; limiting large, long-term holdings in wallets with extensive transaction histories where the public key has been broadcast many times; and paying attention to hardware wallet vendors that are beginning PQC research. Diversifying some long-term holdings into natively post-quantum protocols is a more proactive option.