Quantum AI Security: Are Systems Ready for 2028?

Listen to this article · 11 min listen

The quantum computing timeline is a messy subject, especially when you think about what it means for AI security and the kinds of threats we’ll face. Figuring out where this tech is headed is the only way to get ready for the day it breaks everything. When should we *really* start worrying about quantum’s ability to smash our current cryptographic systems?

Key Takeaways

  • Big money from governments and tech giants is pouring into quantum research, and they expect to hit some major milestones in the next 5 to 10 years.
  • Work on post-quantum cryptography (PQC) standards is well underway at places like the National Institute of Standards and Technology (NIST), which plans to have initial recommendations out by 2028.
  • Switching to PQC isn’t a weekend project. It’s a multi-year slog of finding all your crypto, picking new algorithms, and upgrading every system you have.
  • The “quantum threat horizon”, the point where current public-key encryption gets broken, is pegged at somewhere between 10 and 20 years, but that could easily speed up.
  • You need to start figuring out your cryptographic weak points and planning your migration now, or you’re going to be dangerously exposed later.

1. Assess Your Current Cryptographic Field

You can’t prep for a future threat until you know exactly what you’re defending today. You have to start with a full inventory of every single cryptographic asset and dependency in your organization. That means finding every system, app, and data store that uses encryption for anything, whether it’s confidentiality, integrity, or authentication. Think about your public-key infrastructure (PKI), your VPNs, secure boot, and even your signed firmware updates. Most people have no idea how much crypto they’re actually running. A medium-sized company, for instance, could easily find thousands of certificates, keys, and encrypted data blobs spread across their network, cloud accounts, and operational technology (OT) gear.

Pro Tip: Use an automated discovery tool to get this done. You’re not going to find it all by hand. Tools like Keyfactor Command or Venafi Trust Protection Platform can scan your entire network and give you a complete picture of your certificates, keys, and protocols. Configure them to spit out reports listing algorithm types, key lengths, expiration dates, and what apps they’re tied to. This map is the foundation for any real quantum-readiness plan.

Common Mistake: Only looking at the obvious stuff like web servers. The real gotchas are in the places people forget, like IoT device firmware, internal API traffic, and old data archives, all of which often use crypto that a quantum computer will shred.

2. Understand Quantum Threat Models and Algorithms

The whole panic around quantum computing is really about one thing: its power to shatter existing public-key cryptography. A specific discovery from 1994, Shor’s algorithm, is designed to efficiently factor large numbers and solve discrete logarithm problems, which are the exact mathematical puzzles that make algorithms like RSA and Elliptic Curve Cryptography (ECC) secure. These algorithms aren’t just theoretical constructs. They protect your secure web browsing (TLS), your digital signatures, and your cryptocurrency. While we don’t have quantum computers strong enough to run Shor’s algorithm against today’s encryption keys just yet, a recent IBM Quantum roadmap update shows they’re aiming for a 1,000-qubit processor by 2026 and expect “quantum advantage” within the decade. That’s not a doomsday date, but it’s a clear sign the horizon is getting closer.

For symmetric encryption like AES-256, the threat is different. Grover’s algorithm provides a quadratic speedup for brute-force attacks, which in practice means a 256-bit AES key defends more like a 128-bit key against a quantum attacker. It’s a concern, but it doesn’t completely break symmetric crypto. In many cases, you can counter it just by doubling your key lengths. The real existential threat lies with public-key cryptography.

Feature Current Public-Key Cryptography (e.g., RSA, ECC) Symmetric Encryption (e.g., AES-256) Post-Quantum Cryptography (PQC)
Vulnerable to Shor’s Algorithm ✓ Yes ✗ No ✗ No
Vulnerable to Grover’s Algorithm ✗ No ✓ Yes (Quadratic speedup) ✗ No
Protects current web browsing (TLS) ✓ Yes ✓ Yes ✗ No
NIST Standardization Effort ✗ No ✗ No ✓ Yes (Since 2016)
Initial NIST Recommendations Expected ✗ No ✗ No ✓ Yes (By 2028)
Requires Widespread System Upgrades ✗ No ✗ No ✓ Yes
“Quantum Threat Horizon” ✓ Yes (10-20 years) Partial (Mitigated by key length) ✗ No

3. Monitor Post-Quantum Cryptography (PQC) Standardization

Luckily, cryptographers saw this coming years ago. The National Institute of Standards and Technology (NIST) has been running a big international competition since 2016 to find and standardize new cryptographic algorithms that can stand up to a quantum attack. This effort is called post-quantum cryptography (PQC). After several rounds of intense evaluation, NIST announced its first batch of winners in July 2022: CRYSTALS-Kyber for key encapsulation (KEMs) and three others, CRYSTALS-Dilithium, FALCON, and SPHINCS+, for digital signatures. They’re still looking at other algorithms for future standardization, but these new methods are all designed to run on the computers we have today while being secure against the quantum machines of tomorrow.

You need to keep up with what NIST is doing. Bookmark their Post-Quantum Cryptography Standardization project page and check it regularly. They plan to publish the final standards in phases, with the first set for KEMs and digital signatures expected by 2028. That gives you a critical, but not infinite, window to get your migration plan together.

4. Develop a Quantum-Readiness Roadmap

You need a concrete plan. This isn’t a single-step fix but a project that’s going to unfold over several years. Your roadmap must break down like this:

  1. Discovery and Inventory (we covered this): Get a complete list of your entire crypto footprint.
  2. Risk Assessment: Figure out which of your assets are most exposed and, just as important, which have the longest shelf life. Any data that needs to stay secret for decades (think medical records or your company’s core IP) is a top target for “harvest now, decrypt later” attacks.
  3. Algorithm Selection: Watch NIST’s recommendations and decide which PQC algorithms make sense for your different apps. You’ll probably end up using a hybrid approach for a while, running both old and new quantum-safe algorithms together.
  4. Pilot Programs: Start testing PQC algorithms in dev environments. This is where you’ll find out about compatibility problems, performance hits, and other integration headaches before you go live.
  5. Migration Strategy: Map out the phased rollout of PQC across your entire infrastructure, which will mean serious software and hardware upgrades. Start with your most critical systems and long-lived data first.
  6. Training and Awareness: Get your IT and security people educated on what PQC is and why this threat is real.

This roadmap has to be part of your normal cybersecurity risk management. I’m already seeing organizations in the defense world, like those aligned with the Department of Defense, baking PQC requirements into their long-range architecture plans because they know a multi-year transition is coming no matter what.

5. Implement Cryptographic Agility

Crypto agility is probably the single most important technical capability you can build right now. It means you design your systems so that cryptographic algorithms can be replaced or upgraded without having to tear down and rebuild the whole infrastructure. So many legacy systems are stuck with hard-coded algorithms, which turns any migration into an expensive, time-sucking nightmare. With agility, you can make the switch to PQC much more smoothly and also protect yourself against the next cryptographic break, whether it’s quantum or not. You should be looking for libraries and frameworks that abstract the crypto away, letting you swap algorithms through a configuration file instead of a massive recoding project. Modern TLS does this to some extent by negotiating cipher suites, but is that really enough for the PQC transition? The move to PQC will require more fundamental architectural changes, a philosophy of designing for change that a lot of developers haven’t fully internalized yet.

Pro Tip: When you’re looking at new software or hardware, ask the vendor point-blank about their crypto agility and what their PQC readiness plan is. If a vendor can’t give you a clear answer, they’re a future liability.

Common Mistake: Thinking of PQC migration as a one-and-done project. It isn’t. Cryptographic standards change, and building for agility means your systems can adapt without another massive, disruptive overhaul down the line.

6. Prepare for “Harvest Now, Decrypt Later” Attacks

The scariest part of this whole quantum timeline is the “harvest now, decrypt later” attack. The strategy is simple: adversaries are siphoning up and storing huge amounts of encrypted data *today*, banking on the fact that they’ll have a quantum computer to decrypt it all in the future. This means that data you think is safe behind current public-key crypto could be at risk years from now. Any information with long-term value, state secrets, intellectual property, personal health information, financial records, is a prime target. The takeaway is brutal: even if a quantum computer that can break RSA-2048 is 15 years away, any data encrypted with it today and stored for that long is as good as compromised. This makes the PQC migration an urgent problem for protecting sensitive data, not just a future-proofing exercise.

You have to identify data that falls into this high-risk category and make its protection with PQC your top priority as soon as those standardized algorithms are ready. This could mean re-encrypting entire archives with PQC or making sure all new sensitive data is protected with quantum-safe methods right from the start. The longer you put this off, the more data you’re accumulating under a vulnerable encryption scheme, creating a bigger and bigger prize for future quantum attackers. This is exactly why many experts argue the real time to worry started years ago, when the threat was first understood, not when the hardware finally shows up.

The quantum computing timeline isn’t some distant sci-fi movie plot. It’s happening now, and it has very real consequences for cybersecurity. Getting ahead of it with proactive assessments, a clear plan, and an agile rollout of post-quantum cryptography is the only way to protect your digital assets from what’s coming.

So what’s this “quantum threat horizon” I keep hearing about?

The “quantum threat horizon” is just the estimated time until quantum computers get powerful enough to break the public-key encryption we use today, like RSA and ECC. Nobody has an exact date, but most experts put the window between 10 and 20 years from now. A major breakthrough could always move that date up.

What is post-quantum cryptography (PQC)?

Post-quantum cryptography (PQC) is a family of new crypto algorithms that are built to run on our current, classical computers but are designed to be secure against attacks from a large-scale quantum computer. Groups like NIST are standardizing them so we can replace the algorithms we know are vulnerable.

Will quantum computers break every type of encryption?

No. Quantum computers are a specific threat to public-key algorithms (like RSA and ECC) because of Shor’s algorithm. Symmetric encryption (like AES) and hash functions (like SHA-256) are much safer. Grover’s algorithm can weaken them by making brute-force attacks faster, but that can usually be fixed just by using longer keys.

What does “harvest now, decrypt later” mean?

“Harvest now, decrypt later” is an attack where an adversary steals encrypted data today and just holds onto it. They’re betting that in the future, they’ll have a quantum computer that can break the encryption. This is a huge risk for any sensitive data that needs to stay secret for a long time.

What should my organization be doing right now to get ready?

You need to start by making a complete inventory of all your cryptographic assets. Then, follow NIST’s PQC standardization work closely, build a quantum-readiness roadmap, start engineering cryptographic agility into your systems, and prioritize protecting your long-term sensitive data from “harvest now, decrypt later” attacks.

Andrew Deleon

Principal Innovation Architect Certified AI Ethics Professional (CAIEP)

Andrew Deleon is a Principal Innovation Architect specializing in the ethical application of artificial intelligence. With over a decade of experience, she has spearheaded transformative technology initiatives at both OmniCorp Solutions and Stellaris Dynamics. Her expertise lies in developing and deploying AI solutions that prioritize human well-being and societal impact. Andrew is renowned for leading the development of the groundbreaking 'AI Fairness Framework' at OmniCorp Solutions, which has been adopted across multiple industries. She is a sought-after speaker and consultant on responsible AI practices.