<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Aditee Niraula</title>
    <description>The latest articles on DEV Community by Aditee Niraula (@aditeeniraula).</description>
    <link>https://dev.to/aditeeniraula</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3993479%2Fda0b147a-9b7b-4d74-9332-6f9c9aa284e7.jpg</url>
      <title>DEV Community: Aditee Niraula</title>
      <link>https://dev.to/aditeeniraula</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/aditeeniraula"/>
    <language>en</language>
    <item>
      <title>Why Quantum Computers Could Break the Internet's Encryption and What's Replacing It</title>
      <dc:creator>Aditee Niraula</dc:creator>
      <pubDate>Sat, 20 Jun 2026 04:43:23 +0000</pubDate>
      <link>https://dev.to/aditeeniraula/why-quantum-computers-could-break-the-internets-encryption-and-whats-replacing-it-dd9</link>
      <guid>https://dev.to/aditeeniraula/why-quantum-computers-could-break-the-internets-encryption-and-whats-replacing-it-dd9</guid>
      <description>&lt;p&gt;&lt;strong&gt;The short version&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Almost everything private you do online like logging into your bank, sending a message, entering a password, paying for something is protected by encryption. That encryption works because certain math problems are too hard for today's computers to solve in any reasonable amount of time.&lt;/p&gt;

&lt;p&gt;Quantum computers change that assumption. A large enough quantum computer could solve some of those "too hard" problems quickly and break a big chunk of the encryption the internet relies on.&lt;/p&gt;

&lt;p&gt;That machine doesn't exist yet. But the threat is already here, for a reason we'll explain. And the world's security agencies are already rolling out replacement encryption designed to survive quantum attacks. This article explains, what the threat is, why it matters today, and what's being done about it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How encryption protects you right now&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;When you see the padlock in your browser, two different kinds of encryption are working together.&lt;br&gt;
Symmetric encryption uses a single shared secret key to lock and unlock data. It's fast and strong. The catch: both sides need the same key so how do they agree on a secret key over the open internet without anyone seeing it?&lt;/p&gt;

&lt;p&gt;Public-key encryption (also called asymmetric encryption) solves that. Everyone has two mathematically linked keys:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;A public key they share openly, anyone can use it to lock a message to them.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A private key they keep secret, only it can unlock those messages.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The magic is that knowing the public key doesn't let you figure out the private key. This is what lets two strangers establish a secure connection without ever having met. The most common public-key systems are RSA and ECC (elliptic-curve cryptography), and they protect almost every secure website, VPN, and messaging app today.&lt;/p&gt;

&lt;p&gt;Here's the key insight: public-key encryption is secure only because of one assumption that deriving the private key from the public key requires solving a math problem so hard it would take today's computers millions of years. For RSA, that problem is factoring a very large number into its prime components. Easy to multiply two big primes together; effectively impossible to reverse.&lt;/p&gt;

&lt;p&gt;That single assumption is what quantum computers threaten.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What a quantum computer actually does differently&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A normal computer stores information in bits, each either a 0 or a 1. It checks possibilities one effective path at a time.&lt;/p&gt;

&lt;p&gt;A quantum computer uses qubit, which exploit two strange properties of quantum physics:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Superposition — a qubit can represent a blend of 0 and 1 at the same time, so a group of qubits can encode an enormous number of combinations simultaneously.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Entanglement — qubits can be linked so they act as a coordinated system rather than independent parts.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The result isn't "a faster regular computer." It's a fundamentally different machine that can attack certain specific problems by exploring many possibilities in a coordinated way, instead of plodding through them one by one.&lt;/p&gt;

&lt;p&gt;Crucially, quantum computers are not better at everything. They're dramatically better at a small set of problems and, unluckily for us, the math behind RSA and ECC is on that list.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The two algorithms that change the game&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Two known quantum algorithms are the reason cybersecurity experts are paying attention.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Shor's algorithm&lt;/strong&gt; — the serious threat. &lt;br&gt;
In 1994, mathematician Peter Shor showed that a sufficiently powerful quantum computer could factor large numbers (and solve the related elliptic-curve problem) efficiently. That's precisely the "impossible" problem RSA and ECC depend on. In plain terms:  Shor's algorithm would break the public-key encryption protecting the internet today.  Not weaken it but actually break it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Grover's algorithm&lt;/strong&gt; — the manageable threat. &lt;br&gt;
Grover's algorithm speeds up brute-force searching, which affects symmetric encryption (like AES). But it only provides a "square-root" speedup roughly, it halves the effective strength. The fix is simple: use bigger keys. AES-256 remains considered safe against quantum attacks. So symmetric encryption survives with minor adjustments; it's public-key encryption that needs replacing.&lt;/p&gt;

&lt;p&gt;So, the headline is narrower and more precise than "quantum breaks everything":  quantum computers primarily break the public-key encryption used to set up secure connections, while symmetric encryption mostly survives by using larger keys. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why this is a problem today, not in 20 years&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The obvious objection: today's quantum computers are small and error-prone. Experts estimate it may be a decade or more before one is powerful enough to run Shor's algorithm against real keys. So why worry now?&lt;/p&gt;

&lt;p&gt;The answer is a strategy called “Harvest Now, Decrypt Later." &lt;/p&gt;

&lt;p&gt;An attacker doesn't need a quantum computer today to benefit from one tomorrow. They can record encrypted data now intercepted traffic, stolen encrypted databases, captured communications and simply store it. When a capable quantum computer eventually exists, they decrypt everything they saved.&lt;/p&gt;

&lt;p&gt;This matters enormously for any data that must stay secret for years: medical records, state secrets, financial data, intellectual property, and the long-lived encryption keys baked into hardware and infrastructure.  Data you send today could be decrypted in ten years.  For a lot of sensitive information, that's well within its required secrecy lifetime.&lt;/p&gt;

&lt;p&gt;That's why governments and major companies are migrating now, before the threat is live. The migration itself takes years, so waiting for the quantum computer to arrive is already too late.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The fix: post-quantum cryptography&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The solution is post-quantum cryptography (PQC) new public-key encryption algorithms built on math problems that both regular and quantum computers find hard. PQC runs on the ordinary computers and phones we already use; it doesn't require any quantum hardware. It simply swaps the underlying math for something Shor's algorithm can't unravel.&lt;/p&gt;

&lt;p&gt;Most leading PQC schemes are based on problems involving structured lattices. Think of a vast multidimensional grid where finding the shortest path or nearest point is brutally hard to do in reverse, even for a quantum computer.&lt;/p&gt;

&lt;p&gt;In 2024, the U.S.  National Institute of Standards and Technology (NIST) finalized the first official PQC standards after an eight-year worldwide competition. The headline algorithms:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;ML-KEM&lt;/strong&gt; (originally called Kyber) — for securely establishing shared keys, the job RSA/ECC do today during connection setup.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;ML-DSA&lt;/strong&gt; (originally Dilithium) and SLH-DSA (SPHINCS+) — for digital signatures, which prove authenticity and integrity.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These are now real, published standards. Major platforms have already started deploying them. For example, modern versions of secure messaging and web browsers have begun using hybrid schemes that combine a traditional algorithm with a post-quantum one, so you're protected even if one of them is later found weak.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What this means for you and your organization&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You don't need to panic, and you don't need a quantum physics degree. But if you work in or around technology, here's the practical takeaway:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Awareness is the first step.&lt;/strong&gt;  Quantum is no longer science fiction in security circles, it's an active migration project at every serious institution.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Inventory your cryptography.&lt;/strong&gt;  Organizations are being advised to find out where and how they use public-key encryption, because you can't replace what you can't see. This is the unglamorous but essential first move.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Prioritize long-lived secrets.&lt;/strong&gt;  Data that must remain confidential for many years is most exposed to "Harvest Now, Decrypt Later," so it should migrate first.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Favor "crypto-agility."&lt;/strong&gt; Build systems so the encryption algorithm can be swapped out without rebuilding everything. The lesson of this whole episode is that no algorithm is forever. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Adopt the standards, don't invent your own.&lt;/strong&gt;  The NIST PQC standards exist precisely so individual teams don't roll their own. Use vetted libraries.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The takeaway&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Quantum computing isn't going to break the internet overnight, and the sky is not falling. But it represents a rare event in cybersecurity: a predictable future threat, visible years in advance, against which we can prepare deliberately rather than react in a panic.&lt;/p&gt;

&lt;p&gt;The story is genuinely optimistic. We understood the threat (Shor's algorithm) decades before the machine to exploit it exists. We ran a global, open competition to design defenses. And we now have published, standardized, deployable replacements. The remaining work is migration — careful, large-scale, and already underway.&lt;/p&gt;

&lt;p&gt;The internet's encryption is being quietly rebuilt to survive the quantum age. Now you have the context to understand the shift and keep your third eye vigilant.&lt;/p&gt;

</description>
      <category>computerscience</category>
      <category>cybersecurity</category>
      <category>science</category>
      <category>security</category>
    </item>
  </channel>
</rss>
