<?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: prolixo</title>
    <description>The latest articles on DEV Community by prolixo (@prolixotech).</description>
    <link>https://dev.to/prolixotech</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%2F3802279%2F6091b116-fa93-49ad-bbfd-e3492ccce11e.png</url>
      <title>DEV Community: prolixo</title>
      <link>https://dev.to/prolixotech</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/prolixotech"/>
    <language>en</language>
    <item>
      <title>I built Merkle-chain evidence verification for CMMC compliance — here's why and how</title>
      <dc:creator>prolixo</dc:creator>
      <pubDate>Mon, 02 Mar 2026 19:13:45 +0000</pubDate>
      <link>https://dev.to/prolixotech/i-built-merkle-chain-evidence-verification-for-cmmc-compliance-heres-why-and-how-1had</link>
      <guid>https://dev.to/prolixotech/i-built-merkle-chain-evidence-verification-for-cmmc-compliance-heres-why-and-how-1had</guid>
      <description>&lt;p&gt;This started with a frustrating conversation. A defense contractor friend failed their CMMC Level 2 assessment. Not because they hadn't done the security work — but because when the assessor asked "who last updated this document and when," the answer was effectively "we don't know."&lt;br&gt;
Their evidence was a folder of Word docs labeled things like final_v3_REALLYFINAL.docx. Technically fine content. No way to prove authenticity.&lt;br&gt;
That's what I ended up building Solymus around. Here's the core pattern:&lt;/p&gt;

&lt;p&gt;Artifact gets uploaded&lt;br&gt;
SHA-256 hash computed server-side&lt;br&gt;
Hash digest signed with KMS — ECDSA_SHA_256, MessageType=DIGEST (important: if you sign the full payload you'll hit the 4KB limit fast)&lt;br&gt;
Record stored in DynamoDB with the digest and signature&lt;br&gt;
Every night at midnight UTC, an attestation job seals that day's events into a Merkle root&lt;br&gt;
Each artifact gets a public /verify/{id} endpoint — no auth — that returns the hash, signature, and Merkle linkage&lt;/p&gt;

&lt;p&gt;One thing that bit me: right after upload, merkle_status is "pending" because the attestation job hasn't run yet. I had to add a callout in the docs explaining this or every user thought something was broken. The KMS signature is valid immediately — Merkle is just the additional daily seal.&lt;br&gt;
Also: watch your DynamoDB Decimals. If you serialize them directly to JSON you'll get type errors in your canonicalization. Convert to int or string first.&lt;br&gt;
Product is live at prolixotech.com if you want to see it running. Happy to dig into any of the implementation.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>defense</category>
      <category>ai</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
