← Blog
12 June 2026

What it actually does: a tour of the box

A recurring sin of infrastructure projects is the capability list where half the entries are aspirations in a trenchcoat. So here’s the tour of MeshWhisper with everything labelled honestly: what you can build on today, what’s shipped but young, and what’s a written-down promise. (New here? Start with what MeshWhisper is.)

The cryptographic core — production

Sessions are established with PQXDH — the X3DH handshake plus ML-KEM-768, so a recording of today’s traffic doesn’t become readable when quantum computers stop being a fundraising slide. Messages then flow through the Double Ratchet: every message gets a fresh key, compromise of one reveals nothing before it and heals after it. Encryption happens on the device; the relay sees ciphertext, routing hashes, and nothing else. Safety numbers let users verify each other out-of-band, same as Signal.

This is the part where we don’t do jokes. The crypto is built on the @noble libraries, the design choices are documented, and the honest caveat is stated where you’d want it stated: it has not yet had an external audit. It’s on the list, and the list is public.

The messaging feature set — production

Everything you’d expect from a messenger, because your users expect it and your app shouldn’t have to build it:

Multi-device and recovery — shipped, edges still being filed

Link a laptop to a phone by scanning a QR code; messages fan out to all of an account’s devices, and devices announce and revoke each other with signed announcements. An encrypted archive (which the relay stores and cannot read) brings contacts and history to a fresh device, and peers can replay conversation history to each other — with consent — when someone’s device meets a swimming pool. Mirroring your own sent messages across your own devices is the newest piece of this and the youngest — shipped at the SDK layer, still settling in the reference apps.

The network layer — shipped, awaiting company

The operational stuff nobody tweets about

A node is one Docker container with per-IP rate limiting on every endpoint, Prometheus metrics, hot SQLite backups, a health endpoint, and a security policy. npx @meshwhisper/cli init scaffolds the entire deployment — compose file, generated push keys, federation bootstrap — plus a working SDK skeleton for your app. There’s a doctor command for when you’re sure it’s broken and it’s actually DNS.

Seven reference codebases

Because documentation lies and code doesn’t: a complete PWA messenger (Prudence — try it now), an LLM support bot, a compliance/supervision pattern, a customer-service ticket flow, multi-device pairing, phone/email verification, and local-first on-site comms where a sensor fleet keeps reporting after you kill the relay. Each one is a living reference an adopter can crib from wholesale.

The full API surface is in the reference. Or just scaffold it and poke around — it’s faster than reading me describe it.

Questions or adopting MeshWhisper? Open an issue — adoption reports shape priorities.