<?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: AegisLink</title>
    <description>The latest articles on DEV Community by AegisLink (@aegislink).</description>
    <link>https://dev.to/aegislink</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%2Forganization%2Fprofile_image%2F13733%2F6a1efae5-b2bc-4110-bfe3-4b5a7058dc56.png</url>
      <title>DEV Community: AegisLink</title>
      <link>https://dev.to/aegislink</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/aegislink"/>
    <language>en</language>
    <item>
      <title>Building a messenger that hides metadata, not just messages</title>
      <dc:creator>Starling javier gabino rodriguez</dc:creator>
      <pubDate>Sun, 21 Jun 2026 09:02:37 +0000</pubDate>
      <link>https://dev.to/aegislink/building-a-messenger-that-hides-metadata-not-just-messages-1f99</link>
      <guid>https://dev.to/aegislink/building-a-messenger-that-hides-metadata-not-just-messages-1f99</guid>
      <description>&lt;p&gt;Most "encrypted" apps protect &lt;em&gt;what&lt;/em&gt; you say. They do far less about &lt;em&gt;who you&lt;br&gt;
talk to, when, and how often&lt;/em&gt; — the metadata. And metadata is often the part&lt;br&gt;
that actually gets people in trouble.&lt;/p&gt;

&lt;p&gt;I'm building &lt;strong&gt;AegisLink&lt;/strong&gt;, an open-source end-to-end encrypted messenger, with&lt;br&gt;
that as the central obsession. This is the first post in a build-in-public&lt;br&gt;
series. Everything here is &lt;strong&gt;pre-release and has had no independent audit yet&lt;/strong&gt;,&lt;br&gt;
so treat it as claims to verify — not promises. That's exactly why the code and&lt;br&gt;
protocol are public.&lt;/p&gt;

&lt;h2&gt;
  
  
  The threat I actually care about
&lt;/h2&gt;

&lt;p&gt;End-to-end encryption is table stakes now. The interesting question is what the&lt;br&gt;
&lt;em&gt;server&lt;/em&gt; learns even when it can't read your messages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;who is talking to whom&lt;/li&gt;
&lt;li&gt;when, and how often&lt;/li&gt;
&lt;li&gt;from which IP, on which device&lt;/li&gt;
&lt;li&gt;message and attachment sizes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A server that logs those can reconstruct your entire social graph without ever&lt;br&gt;
decrypting a word. So the design rule for AegisLink's relay is simple: &lt;strong&gt;know as&lt;br&gt;
little as possible.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How that translates into code
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;No account.&lt;/strong&gt; No email, no phone, no name. Identity is generated on-device
(Ed25519 + X25519); your address is a random ID.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dumb relay.&lt;/strong&gt; It forwards opaque ciphertext and keeps no logs of who
messages whom — no IPs, no access timestamps, no message sizes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Modern crypto.&lt;/strong&gt; Double Ratchet + X3DH, with a hybrid post-quantum layer
(PQXDH). Private keys never leave the device.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sealed signaling for calls.&lt;/strong&gt; WebRTC SDP/ICE is sealed with NaCl box before
it reaches the relay, so the server never sees IPs or DTLS fingerprints.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Encrypted at rest.&lt;/strong&gt; The local DB is encrypted (SQLCipher); backups use an
Argon2id-derived key only the user holds.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What's NOT done yet
&lt;/h2&gt;

&lt;p&gt;Being honest is the whole point of doing this in the open:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Transport-level sealed-sender&lt;/strong&gt; — hiding the sender from the relay &lt;em&gt;process
itself&lt;/em&gt; — is in active development, not shipped.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No third-party audit&lt;/strong&gt; has happened. The protocol and threat model are in
the repo precisely so people who know more than me can check the work.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Follow along / tear it apart
&lt;/h2&gt;

&lt;p&gt;Code, protocol docs and threat model:&lt;br&gt;
&lt;a href="https://github.com/gabinotech22-cmyk/AegisLink" rel="noopener noreferrer"&gt;https://github.com/gabinotech22-cmyk/AegisLink&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next post I'll go deep on one piece — probably the X3DH/PQXDH handshake. If&lt;br&gt;
there's something you'd rather I break down, tell me in the comments.&lt;/p&gt;

</description>
      <category>buildinpublic</category>
      <category>opensource</category>
      <category>privacy</category>
      <category>security</category>
    </item>
  </channel>
</rss>
