Share article
Share article
Enjoy articles without ads?
Register for free and get unlimited access to all articles.
Quantum threat: what actually breaks, and what does not
Why FHE is "built for post-quantum" in practice
FHE's core trick is straightforward to describe and brutally hard to implement well: it lets you compute on ciphertexts and get an encrypted result that only the keyholder can decrypt. That is "encrypt while computing", meaning data can stay secret not just in transit and at rest, but also in use.
The post-quantum angle comes from what FHE relies on under the hood. Most widely deployed FHE families, such as BFV/BGV (exact arithmetic), CKKS (approximate arithmetic for ML style workloads), and TFHE (bitwise and fast bootstrapping styles), are built on lattice-based assumptions, typically variants of Learning With Errors (LWE) and ring/module versions (RLWE/MLWE). [4] Those assumptions are in the same neighbourhood as the ones behind mainstream PQC key encapsulation mechanisms.
So when people say FHE is "post-quantum", they usually mean this:
- The security reductions point to lattice problems, which are currently considered quantum-resistant relative to RSA and ECC.
- Parameter sets can be chosen in PQ security models, aiming to withstand both classical and quantum attacks.
- The ecosystem is converging: PQC standardisation work has pushed lattice cryptography into the boring, audited, production pipeline, and that spills over into FHE implementations, libraries, and threat modelling. [5]
That is not a guarantee, but it is a stronger starting position than "we will panic-migrate later".
FHE's real value proposition: fixing the "data-in-use" hole
Crypto systems already know how to protect data in two states:
- In transit (TLS, encrypted channels)
- At rest (disk encryption, encrypted databases)
- Confidential AI inference (users send encrypted inputs, providers run models on ciphertexts)
- Private analytics (queries over encrypted datasets)
- Privacy-preserving smart contract logic (application-level confidentiality without exposing everything to the chain)
The quantum tie-in is obvious: if you are already redesigning your crypto stack for PQ migration, you might as well redesign it to reduce plaintext exposure at the same time.
Where this hits crypto markets and protocols
- encrypted off-chain compute with verifiable outputs,
- application-specific "confidential state" that can settle to public chains,
- private order flow and sealed-bid style mechanisms (with careful design to avoid new manipulation vectors).
The trade-offs: FHE is not free, and quantum safety is not binary
Even with big performance improvements, FHE remains expensive compared with plaintext compute. The cost shows up in:
- latency (bootstrapping and deep circuits can be slow),
- bandwidth (ciphertexts are large),
- developer complexity (circuits, noise budgets, precision trade-offs like CKKS),
- parameter risk (choose wrong parameters and you either leak or grind to a halt).
On the quantum side, "post-quantum" is a moving target. Security confidence depends on conservative parameter choices, implementation quality, and whether future cryptanalysis (classical or quantum) finds new shortcuts on the specific lattice instances you use.
What to watch next
FHE adoption is likely to track three measurable realities, rather than vibes on CT:
- Production benchmarks: not "toy demos", but sustained throughput on real workloads (private inference, private state transitions) with clear cost curves.
- Audit density: multiple independent reviews across libraries, parameter sets, and side-channel surfaces.
- Composable primitives: clean interfaces with zk proofs, MPC, and rollup architectures, rather than one-off bespoke stacks.
If those three land, FHE becomes less of a research flex and more of an infrastructure default for handling sensitive data in a hostile, post-quantum world.
Risk box: what would invalidate the "FHE is post-quantum ready" narrative?
- Cryptanalytic breaks against the lattice assumptions or common parameter sets used in mainstream FHE libraries.
- Implementation failures (side channels, faulty randomness, parameter misconfiguration) that matter more than theoretical security.
- Economics that never clear: if the cost per encrypted operation stays too high for real apps, the tech remains niche even if it is secure.
- Chain-level complacency: treating FHE as a substitute for migrating signatures and key exchange to PQ schemes.
FHE looks like it was born in the right cryptographic neighbourhood for the quantum era. The hard part now is making it cheap, auditable, and composable enough that "encrypt while computing" becomes normal, rather than a neat demo that never quite ships.

