INVITE ONLY
OBSERVATORY

06 Technology

Read the whole stack from its own source.

Every layer, every primitive, every formula — printed from the source, with the standard each one answers to.

Six layers on your device. Two on ours.

Device · Applications

One SERPENT-ID across the ecosystem

Messenger · QMail · QVault · QWallet · QLEAP · Wadjet · HydraSIM · Qaduceus

Identity + Trust

Who you are, provable — never disclosed

SERPENT ID (secret) · Profile ID (public) · KTS-Quorum key transparency · ML-DSA-87 signatures

Voice · Video · Media

Calls fail closed, media seals in chunks

EVS-PQ binder · Q-Manifest · EVM-Pad · QSEAL-Stream (256 KiB chunks)

The EVS-PQ binder was previously labelled EVS-DTLS-PQ. Its dtls_master_secret slot is fed from the same hybrid X25519 + ML-KEM-1024 handshake secret as its KEM slot, domain-separated by HKDF label — no DTLS layer ships, so the two slots share upstream entropy rather than being independent. The HKDF label below keeps its original spelling because it is a wire-visible domain separator.

crypto-core (Rust, one library, every platform)

The primitives live in one place

ML-KEM-1024 · ML-DSA-87 · X25519 · ChaCha20-Poly1305 · HKDF-SHA-512 · Argon2id · Q-Ratchet · Q-KEM-Trinity · Q-GroupCipher

Entropy base layer

Where keys are born

Multi-vendor QRNG entropy + deterministic dual-peer CHSH ritual; operator-signed QPU transcript lane (v2) ships in the client, activates per deployment

Carrier · Relay + Mixcōātl ledger

A pure relay that stores only opaque envelopes

Rust/Axum relay · erase-on-ack · sealed-sender routing · sovereign bare metal, no hyperscaler dependencies

Check every primitive against its standard.

Primitive master table — from the protocol specification §2.1
SymbolPrimitiveStandardKey facts
KEM ML-KEM-1024 FIPS 203 1568 B public key, 32 B shared secret
SIG ML-DSA-87 FIPS 204 2592 B public key, 4627 B signature
DH X25519 RFC 7748 32 B keys, classical hybrid half
AEAD ChaCha20-Poly1305 RFC 8439 256-bit key, 96-bit nonce, 128-bit tag; key-committing mode on by default
AEAD-2 AES-256-GCM FIPS 197 + SP 800-38D implemented, reserved as suite 0x0002, staged for rollout
HASH SHA-512 FIPS 180-4 64 B digest — the CNSA hash floor
HASH-3 SHAKE-256 / SHA3-256 FIPS 202 transcripts, Bell ritual, domain separation
KDF HKDF-SHA-512 RFC 5869 every derived key, under a registered QERYX- label
PWKDF Argon2id RFC 9106 m=512 MiB, t=2, p=4, 32 B output
MAC HMAC-SHA-256 RFC 2104 presence and blind tokens, 16 B truncated
CNSA 2.0 — scoped conformance

CNSA 2.0 — asymmetric core conformant (ML-KEM-1024 + ML-DSA-87 at Category V; SHA-512 at or above the hash floor). Production AEAD today is ChaCha20-Poly1305 (RFC 8439), a documented deviation; the AES-256-GCM NSS suite is implemented and reserved as suite 0x0002, staged for rollout. Pre-evaluation checklist: 0 non-conformant findings, 3 documented deviations (NIAP ETR, 2026-05).

Read the formulas as the source prints them.

These are the doc blocks of the shipped Rust, character for character.

crypto-core/src/hybrid.rs — the hybrid combiner (NIST SP 800-227 §6.2 shape)
Hybrid.Encapsulate(pk_C, pk_PQ):       // default v2 combiner
    (ct_C, ss_C) ← X25519.Encapsulate(pk_C)
    (ct_PQ, ss_PQ) ← ML-KEM-1024.Encapsulate(pk_PQ)
    ss_hybrid = HKDF-SHA512(
        IKM:  ss_PQ || ss_C,                    // FIPS-approved component first
        salt: "QERYX-HYBRID-v2-ML-KEM-1024-X25519",   // fixed literal, not the ciphertexts
        info: pk_C || ct_PQ || "QERYX-HYBRID-NIST-SP-800-227-v2",
        len:  32
    )
    return (ct_C || ct_PQ, ss_hybrid)

Verbatim from crypto-core. X-Wing-style concatenation over HKDF-SHA-512 — we do not claim the X-Wing IND-CCA2 proof at the -1024 parameter set.

crypto-core/src/evs_dtls_pq.rs — the call-key binder
srtp_master_key = HKDF-Expand(
  prk  = HKDF-Extract(
           salt = call_id_bytes,
           ikm  = dtls_master_secret
               || ml_kem_shared
               || ml_dsa_pub_first
               || ml_dsa_pub_second),
  info = "QERYX-EVS-DTLS-PQ-SRTP-v1",
  L    = 32)

Verbatim from crypto-core. The binder has no fallback path: if the ML-KEM decapsulation fails, the derived keys differ and media halts on the first authentication tag.

Because a description can drift from the code and a printed doc block cannot drift far: it is reviewed against the source it lives in. Where a figure on this site is ever a simplification, it is stamped “simplified schematic” — an unstamped formula here is source text.

Seal something yourself. Then break it.

Real ChaCha20-Poly1305 in your browser: write a message, seal it, flip a byte and watch the tag refuse. The AEAD saying no is the whole lesson.

Sealed and opened entirely in this page. Nothing leaves your browser.

Real ChaCha20-Poly1305 (RFC 8439), compiled from Rust to WebAssembly, running in your browser. Same primitive family as the QERYX protocol; demo build, not the shipped crypto-core module.

Recompute every number on this page.

2921

registered QERYX- domain-separation labels, uniqueness machine-enforced

623 B1

canonical v1 Bell transcript, spec-pinned length

1600 B1

hybrid public key and ciphertext on the wire — X25519 plus ML-KEM-1024

5 / 51

core primitives with machine-checked Verifpal proofs, negative controls included

The proven set, by name: Q-Ratchet, Q-KEM-Trinity, Q-GroupCipher, Q-Anamorph, Q-Threshold — plus five Q-Entangle-Bell models. Two primitives additionally ship negative-control models that fail on purpose when the attacker is upgraded past the claim, proving the passes are non-vacuous. Artifacts at /security/transparency.

The hard questions.

Because parity bugs are key bugs. iOS, Android, and the backend call the same crypto-core through FFI; the label registry and its cross-platform tests are the contract that Swift and Rust hash identical bytes.

Constant-time on every phone without hardware dispatch — and it is a documented CNSA deviation, stated in the conformance paragraph wherever we make the CNSA claim. AES-256-GCM is implemented and reserved as suite 0x0002, staged for rollout.

The platform CSPRNG, mixed with entropy from four independent quantum-entropy providers. A provider falling away is never silent: source fallbacks carry attestation of what actually supplied the bits.