<?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: Deaksh</title>
    <description>The latest articles on DEV Community by Deaksh (@deaksh).</description>
    <link>https://dev.to/deaksh</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3969760%2F4f1a8377-e712-41e3-8e13-133faaae13b9.JPG</url>
      <title>DEV Community: Deaksh</title>
      <link>https://dev.to/deaksh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/deaksh"/>
    <language>en</language>
    <item>
      <title>What actually breaks when you migrate to post-quantum cryptography (and how to find out before production)</title>
      <dc:creator>Deaksh</dc:creator>
      <pubDate>Fri, 05 Jun 2026 11:31:57 +0000</pubDate>
      <link>https://dev.to/deaksh/what-actually-breaks-when-you-migrate-to-post-quantum-cryptography-and-how-to-find-out-before-2m5a</link>
      <guid>https://dev.to/deaksh/what-actually-breaks-when-you-migrate-to-post-quantum-cryptography-and-how-to-find-out-before-2m5a</guid>
      <description>&lt;p&gt;NIST finalised the post-quantum cryptography standards in August 2024 — &lt;br&gt;
ML-KEM (FIPS 203), ML-DSA (FIPS 204), SLH-DSA (FIPS 205). Regulators are &lt;br&gt;
now asking for migration roadmaps. Most teams don't know where to start.&lt;/p&gt;

&lt;p&gt;The problem isn't finding the new algorithms. It's knowing what they'll &lt;br&gt;
cost you before you commit.&lt;/p&gt;

&lt;h2&gt;
  
  
  The number that changes everything
&lt;/h2&gt;

&lt;p&gt;ML-DSA signatures are &lt;strong&gt;33× larger&lt;/strong&gt; than ECDSA:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Algorithm&lt;/th&gt;
&lt;th&gt;Signature size&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;ECDSA-P256&lt;/td&gt;
&lt;td&gt;72 bytes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ML-DSA-44&lt;/td&gt;
&lt;td&gt;2,420 bytes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ML-DSA-65&lt;/td&gt;
&lt;td&gt;3,293 bytes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SLH-DSA-256s&lt;/td&gt;
&lt;td&gt;29,792 bytes&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;That's not just a performance concern. It breaks things structurally.&lt;/p&gt;

&lt;h2&gt;
  
  
  What actually breaks
&lt;/h2&gt;

&lt;p&gt;-DNSSEC: The UDP limit is 1,232 bytes. An ML-DSA-44 signature alone is &lt;br&gt;
2,420 bytes. Your signed DNS responses will fragment — or worse, get dropped &lt;br&gt;
by middleboxes that don't handle fragmented UDP.&lt;/p&gt;

&lt;p&gt;-JWT tokens: A 2,420-byte signature plus header plus claims blows past &lt;br&gt;
the 8KB HTTP header limit most API gateways enforce. Your auth tokens stop &lt;br&gt;
working at the proxy layer, not at your app.&lt;/p&gt;

&lt;p&gt;-TLS handshakes: The CertificateVerify message now spans 3 MTU packets. &lt;br&gt;
Some legacy TLS stacks can't handle multi-packet handshake messages.&lt;/p&gt;

&lt;p&gt;Embedded devices: ML-KEM-768 key generation needs ~2MB of RAM. Most &lt;br&gt;
microcontrollers don't have it. IoT devices that do TLS today may simply &lt;br&gt;
not be able to do PQC.&lt;/p&gt;

&lt;p&gt;HSMs: Most hardware security modules don't support ML-KEM or ML-DSA yet. &lt;br&gt;
If your private keys live in an HSM, you're waiting on vendor firmware updates.&lt;/p&gt;

&lt;p&gt;How to find your specific blockers&lt;/p&gt;

&lt;p&gt;I built &lt;a href="https://github.com/Deaksh/pqc-sandbox" rel="noopener noreferrer"&gt;pqc-sandbox&lt;/a&gt; to answer &lt;br&gt;
this before you touch production.&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
bash
pip install pqc-sandbox
pqc-sandbox demo
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>security</category>
      <category>cryptography</category>
      <category>devops</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
