Post-Quantum Cryptography: What to Do Before It Matters
Quantum computers cannot break your encryption yet, but the data you send today can be stored and decrypted later. Here is a calm, practical plan to get ready.
By Innovation T Team
A large, fault-tolerant quantum computer does not exist in 2026, and it may not for years. That is exactly why post-quantum cryptography is a today problem and not a someday problem. Encrypted data you send this morning can be recorded, stored cheaply, and decrypted the moment the hardware catches up, so the clock on some of your secrets is already running.
Why quantum matters now, even without a quantum computer
The threat model that should keep you awake is not a magic machine that instantly cracks everything. It is a patient adversary running a strategy known as "harvest now, decrypt later." They capture your TLS sessions, VPN traffic, database backups, and signed firmware today, sit on the ciphertext, and wait. When a cryptographically relevant quantum computer arrives, they replay the mathematics against the archive.
This reframes the deadline. The question is not "when will quantum computers break RSA?" It is "how long does this data need to stay secret, and how long until it can be decrypted?" If you have patient records, financial data, source code, government contracts, or long-lived credentials that must remain confidential into the 2030s and beyond, the exposure window is open right now.
In our experience advising teams, the most damaging assumption is that this is purely a future concern. Confidentiality that must outlast the next decade is already at risk. Signatures and authentication have more breathing room, because you cannot forge a signature on a message that was verified in the past, but confidentiality has no such grace period.
What actually changes, and what does not
Not all cryptography is equally exposed. Getting this distinction right saves you from a panicked, wasteful rewrite.
Public-key cryptography is the real exposure
The algorithms that quantum computing genuinely threatens rely on problems that Shor's algorithm solves efficiently:
- RSA, used for key exchange and signatures
- Elliptic curve cryptography (ECDSA, ECDH, Curve25519)
- Diffie-Hellman key exchange in all its classical forms
These underpin TLS handshakes, SSH, code signing, certificate authorities, and most of the public-key plumbing on the internet. This is where migration effort belongs.
Symmetric cryptography and hashing largely hold up
AES and modern hash functions are affected far less. Grover's algorithm offers only a quadratic speedup, which is blunted by using adequate key and digest sizes:
- AES-256 remains strong. AES-128 is weakened but not broken in any practical sense.
- SHA-256 and SHA-3 remain acceptable for most uses.
The practical takeaway: if you are still running AES-128 anywhere sensitive, moving to AES-256 is a cheap, sensible hedge you can do this quarter without waiting for anything.
The standards you should actually build on
The guessing is over. In 2024 NIST finalized the first set of post-quantum standards, and by 2026 they are what serious vendors implement. Know these names, because they will appear in vendor questionnaires and audit checklists:
- FIPS 203 (ML-KEM): a key encapsulation mechanism derived from Kyber, used to establish shared secrets. This is your replacement for classical key exchange.
- FIPS 204 (ML-DSA): a digital signature scheme derived from Dilithium, the general-purpose default for signatures.
- FIPS 205 (SLH-DSA): a stateless hash-based signature scheme derived from SPHINCS+, slower and larger but built on very conservative assumptions, useful for firmware and root signing where longevity beats speed.
A crucial detail for real deployments in 2026: the dominant pattern is hybrid, not pure post-quantum. Major browsers and CDNs already negotiate hybrid key exchange such as X25519 combined with ML-KEM-768 in TLS. Hybrid means the session stays secure if either the classical or the post-quantum component holds. That belt-and-suspenders approach protects you against both a future quantum break and any undiscovered weakness in the newer algorithms. For most teams, hybrid is the correct target state, not a stepping stone you rush past.
Crypto-agility is the actual goal
Here is the mindset shift that matters more than any single algorithm choice. The standards will keep evolving, parameters will be tuned, and new attacks will surface. If your systems hardcode a specific cipher deep in the codebase, every future change becomes another emergency migration.
The real deliverable is crypto-agility: the ability to swap cryptographic primitives without rearchitecting your application. That means:
- Cryptography accessed through an abstraction layer, never scattered as raw calls across the codebase
- Algorithm identifiers stored as configuration and metadata, so ciphertext and signatures record which scheme produced them
- Certificate and key lifecycles short enough that rotation is routine rather than heroic
- Automated inventory so you can answer "what are we using and where" in minutes, not weeks
Teams that build agility now treat the post-quantum migration as the first of many controlled swaps, not a once-in-a-generation fire drill. This is the same discipline that underpins a healthy zero trust architecture: assume nothing is permanent, verify continuously, and make change cheap.
A migration plan you can start this quarter
You do not need to boil the ocean. You need a sequenced, honest plan. Here is the order of operations we recommend and use with clients.
- Build a cryptographic inventory. You cannot protect what you cannot see. Catalogue every place you use public-key crypto: TLS endpoints, VPNs, SSH keys, code signing, certificate authorities, embedded devices, database encryption, and third-party libraries. Tools that scan binaries and traffic help, but so does simply reading your dependency manifests.
- Classify data by shelf life. For each data flow, ask how long it must stay confidential. Anything that must survive past roughly 2032 and travels over recordable channels is your highest priority. Short-lived session data can wait.
- Rank by exposure and effort. Plot longevity against how hard the system is to change. Long-lived secrets on easy-to-update systems are your quick wins. Long-lived secrets buried in hard-to-patch firmware are your hard problems, so start planning those early even if you finish them last.
- Pilot hybrid key exchange. Turn on hybrid TLS (X25519 plus ML-KEM) on a non-critical service. Measure the handshake overhead and confirm your load balancers, proxies, and clients cope with larger key material.
- Refactor toward crypto-agility. Route cryptographic operations through a single internal library or service so future swaps are a config change, not a rewrite.
- Update your vendor and procurement checklist. Require suppliers to state their post-quantum roadmap. Your security is only as strong as the weakest library in your supply chain.
- Re-run the inventory on a schedule. Migration is not a one-time project. Fold cryptographic review into your regular security cadence, ideally alongside your penetration testing program.
Tradeoffs and gotchas to plan for
Post-quantum algorithms are not drop-in replacements with identical characteristics. Going in with clear eyes prevents ugly surprises in production.
- Bigger keys and signatures. ML-KEM and ML-DSA produce larger artifacts than their classical counterparts, and SLH-DSA signatures are substantially larger. This inflates handshake sizes, certificate chains, and storage. Systems with tight packet budgets or constrained devices feel this most.
- Performance is usually fine, but measure. For most web workloads the added CPU cost of hybrid handshakes is modest. Do not assume, though. Benchmark on your actual hardware, especially for high-throughput APIs and IoT endpoints.
- Protocol and buffer limits. Larger key material occasionally trips undersized buffers, old middleboxes, or rigid protocol assumptions. This is why piloting on a low-risk service first is non-negotiable.
- Compliance is arriving. Regulators and frameworks are steadily adding post-quantum expectations, and some sectors already ask for migration timelines. Documenting your plan now is far cheaper than scrambling to produce one during an audit.
- Do not roll your own. Use vetted, standards-compliant libraries. Novel or homegrown implementations of these young algorithms are a liability, not a differentiator.
The realistic message for 2026 is neither panic nor complacency. It is preparation. Organizations that start with an inventory and a crypto-agility refactor will migrate calmly over the next few years. Those who wait for a headline about a working quantum computer will migrate under pressure, at higher cost, with data already harvested.
How Innovation T can help
At Innovation T, we treat post-quantum readiness as an engineering discipline, not a scare campaign. Our security and cloud engineering teams start where it counts: a clear cryptographic inventory, a data shelf-life assessment, and a prioritized roadmap that fits your actual systems and budget. From there we implement hybrid key exchange, refactor cryptography behind clean abstraction layers so future swaps are painless, and harden your certificate and key lifecycle so rotation becomes routine.
Because we also build and run the underlying platforms, we can weave crypto-agility into your web applications, software solutions, and cloud infrastructure rather than bolting it on afterward. That includes reviewing third-party dependencies, updating your vendor requirements, and folding cryptographic checks into your ongoing security testing.
If your data needs to stay private into the 2030s, the smart move is to start the inventory now. Explore our services to see how our web, software, cloud, and security work fits together, or contact us for a practical post-quantum readiness assessment tailored to your stack. The quantum computer is not here yet. Your preparation window is, and it will not stay open forever.
Ready to build with Innovation T?
Whether it is security, growth or engineering, our team can help you ship it well.