Cryptographic signing, replay protection, and E2E encryption for AI agent messages. One envelope. Every transport. Quantum-ready.
Table of Contents
- The Problem
- What 7h3 Protocol Does
- How It Works
- Security Guarantees
- Installation
- Quick Start
- Core API
- Transports
- Gateway
- Cloudflare Workers
- AI Coding Agents
- MCP (Claude Tool Calls)
- End-to-End Encryption
- Capability Tokens and Delegation
- Streaming Message Signing
- Distributed Replay Cache (Redis)
- Binary Wire Format (CBOR)
- Observability (Prometheus + OpenTelemetry)
- Post-Quantum Signatures (ML-DSA)
- Threshold Signatures (M-of-N BLS)
- Audit Log
- Rate Limiting
- Route Policies
- Key Infrastructure
- Cross-SDK Conformance
- CLI Reference
- Docker
- Uninstall
- Changelog
- License
The Problem
AI agent systems are moving fast, and the protocols underpinning them were not built with message-level security in mind.
MCP (Model Context Protocol) is plain JSON-RPC 2.0. A message in flight has no signature. Any intermediary — a rogue proxy, a compromised queue consumer, a misconfigured load balancer — can alter tool call parameters or replay a previously captured request. The MCP handler has no way to know.
A2A (Agent-to-Agent) signs Agent Cards — static configuration — not per-message traffic. Once an agent is "trusted," every message it sends is implicitly trusted regardless of whether that specific message was tampered with in transit or is a replay from ten minutes ago.
HTTP APIs default to IP-based rate limiting. IP addresses are trivially spoofed or shared. The same valid signed request can often be submitted multiple times, triggering duplicate writes, payments, or tool executions.
The gap these protocols share is identical: they authenticate agents at the connection or identity level, but they do not authenticate individual messages at the content level. 7h3 Protocol fills that gap without replacing anything.
What 7h3 Protocol Does
7h3 Protocol wraps every message — regardless of transport — in a signed envelope. The envelope is compact, deterministic, and verifiable by any peer that holds the sender's public key.
v0.5.0 feature set:
| Feature | Mechanism |
|---|---|
| Message authentication | Ed25519 asymmetric signing or HMAC-SHA256 |
| Replay prevention | TTL + nonce deduplication (in-memory or Redis) |
| E2E encryption | X25519 key exchange + ChaCha20-Poly1305 AEAD |
| Capability delegation | Scoped, time-bounded, cryptographic credential chains |
| Streaming signing | Per-chunk HMAC + final Ed25519 over the full stream |
| Observability | Zero-dep Prometheus exposition + optional OpenTelemetry |
| Post-quantum | ML-DSA-65 / ML-DSA-87 (NIST FIPS 204) — @7h3/protocol-pq |
| Binary encoding | Deterministic CBOR (RFC 8949) — ~40% smaller than JSON |
| Threshold signing | M-of-N BLS12-381 aggregation — @7h3/protocol-threshold |
| Transport coverage | HTTP, WebSocket, gRPC, Queues, Webhooks |
| SDK coverage | TypeScript, Python, Rust, Go, Browser |
How It Works
Canonical Serialization
Signatures only mean something if everyone signs the same bytes. JSON object key order is unspecified by the spec, so 7h3 Protocol uses deterministic JSON canonicalization: keys are sorted alphabetically at every nesting level, optional absent fields are omitted entirely, and the result is UTF-8 encoded.
The canonical form is byte-identical across TypeScript, Python, Rust, and Go, proven by the shared conformance test vectors in conformance/7h3_v0_1.json.
Envelope Structure
{
"body": {
"capability": "task.plan",
"content": "do something",
"correlationId": "req-123",
"intent": "TASK"
},
"header": {
"messageId": "uuid-here",
"nonce": "random-bytes",
"recipient": "agent.beta",
"sender": "agent.alpha",
"timestampMs": 1712500000000,
"ttlMs": 60000,
"version": "7h3/0.1"
},
"signature": {
"alg": "ED25519",
"keyId": "k1",
"value": "base64url-sig-here"
}
}
Optional fields (capability, correlationId, recipient) are omitted when absent — not null, not "". This is load-bearing for the canonical form.
End-to-End Flow
sequenceDiagram
participant S as Sender Agent
participant C as 7h3 SDK
participant T as Transport
participant G as Gateway / Receiver
participant U as Upstream
S->>C: createEnvelope(sender, body, ttlMs)
C->>C: Deterministic JSON canonicalization
C->>C: Ed25519 sign(canonicalPayload, privateKey)
C-->>S: SignedEnvelope {header, body, signature}
S->>T: Transmit via HTTP / WS / gRPC / Queue / Webhook
T->>G: Request with envelope
G->>G: Check TTL not expired
G->>G: Check nonce not replayed (memory or Redis)
G->>G: Verify Ed25519 signature
G->>G: Match route policy + rate limit
G->>U: Forward + inject x-7h3-sender header
U-->>G: Response
G-->>S: Response (optionally signed)
TTL and Nonce
Every envelope carries timestampMs, ttlMs, and a random nonce. A receiver rejects the envelope if now > timestampMs + ttlMs, then checks the nonce against a deduplication store. A replayed envelope fails even if the signature is valid.
Security Guarantees
| Attack | Defense |
|---|---|
| Impersonation | Ed25519 — only the private key holder can produce a valid signature |
| Replay | Nonce deduplication + TTL expiry (in-memory or Redis) |
| Tampering | Signature covers the full canonical envelope; any modification breaks verification |
| Unauthorized access | Per-route allowedSenders policy — unlisted senders rejected before upstream |
| Response spoofing | Signed x-7h3-response header; correlationId binding |
| Rate abuse | SlidingWindowRateLimiter keyed by verified sender identity, not IP |
| Audit tampering | InMemoryAuditLog entries are Ed25519-signed and chained |
| Quantum computers | ML-DSA-65/87 via @7h3/protocol-pq (NIST FIPS 204) |
| Cross-instance replay | RedisReplayStore — atomic SET NX PX across all instances |
| Eavesdropping | X25519 + ChaCha20-Poly1305 E2E encryption |
Installation
TypeScript / Node.js
npm install @7h3/protocol
# or
pnpm add @7h3/protocol
# or
yarn add @7h3/protocol
Requires Node.js ≥ 18. Zero runtime dependencies — uses Node.js built-in crypto throughout.
Python
pip install 7h3-protocol
Requires Python ≥ 3.9. Optional extras for advanced features:
pip install 7h3-protocol[redis] # RedisReplayStore (pip install redis)
pip install 7h3-protocol[crypto] # X25519 + ChaCha20 encryption (pip install cryptography)
pip install 7h3-protocol[pq] # ML-DSA post-quantum (pip install dilithium-py)
Rust
# Cargo.toml
[dependencies]
protocol-7h3 = "0.5"
Go
go get github.com/IceMasterT/7h3-protocol/sdk/go
Browser
npm install @7h3/protocol-browser
Pure Web Crypto API — no Node.js dependency. Works in Chrome 100+, Firefox 100+, Safari 16+, Edge 100+.
Post-Quantum Extension
npm install @7h3/protocol-pq
Adds ML-DSA-65 and ML-DSA-87 (NIST FIPS 204 / Dilithium). Separate package to keep @7h3/protocol at zero runtime dependencies.
Threshold Signatures Extension
npm install @7h3/protocol-threshold
Adds M-of-N BLS12-381 threshold signatures and Shamir Secret Sharing.
Quick Start
import {
generateEd25519KeypairBase64Url,
createEnvelope,
signEnvelopeEd25519,
verifyEnvelopeEd25519,
} from '@7h3/protocol'
// 1. Generate keypairs
const sender = await generateEd25519KeypairBase64Url()
const receiver = await generateEd25519KeypairBase64Url()
// 2. Create and sign a message
const envelope = createEnvelope('agent.alpha', {
intent: 'TASK',
content: 'summarize https://example.com',
}, { ttlMs: 60_000 })
const signed = await signEnvelopeEd25519(envelope, sender.privateKey, 'key-1')
// 3. Transmit `signed` via any transport (HTTP header, WS frame, queue, etc.)
// 4. Verify on the receiving end
const result = await verifyEnvelopeEd25519(signed, sender.publicKey)
if (!result.ok) throw new Error(result.error)
console.log('Verified sender:', signed.header.sender) // 'agent.alpha'
Core API
Key Generation
TypeScript:
import { generateEd25519KeypairBase64Url } from '@7h3/protocol'
const { publicKey, privateKey } = await generateEd25519KeypairBase64Url()
// publicKey: SPKI format, base64url, ~44 chars
// privateKey: PKCS8 format, base64url, ~88 chars
Python:
from protocol_7h3 import generate_keypair
public_key, private_key = generate_keypair()
Rust:
use protocol_7h3::generate_keypair;
let (public_key, private_key) = generate_keypair().unwrap();
Go:
import go7h3 "github.com/IceMasterT/7h3-protocol/sdk/go"
publicKey, privateKey, err := go7h3.GenerateKeypair()
Browser:
import { generateKeypair } from '@7h3/protocol-browser'
const { publicKey, privateKey } = await generateKeypair()
Creating Envelopes
import { createEnvelope } from '@7h3/protocol'
const envelope = createEnvelope(
'agent.alpha', // sender ID
{
intent: 'TASK',
content: 'do something',
capability: 'task.plan', // optional
correlationId: 'req-123', // optional
},
{
ttlMs: 60_000, // 1 minute (default: 60000)
recipient: 'agent.beta', // optional
messageId: 'custom-uuid', // optional — auto-generated if omitted
}
)
Signing
Ed25519 (asymmetric — recommended):
import { signEnvelopeEd25519 } from '@7h3/protocol'
const signed = await signEnvelopeEd25519(envelope, privateKey, 'key-id')
// signed.signature.alg === 'ED25519'
HMAC-SHA256 (shared secret):
import { signEnvelopeHmac } from '@7h3/protocol'
const signed = await signEnvelopeHmac(envelope, sharedSecret, 'key-id')
// signed.signature.alg === 'HS256'
Python:
from protocol_7h3 import sign_envelope_ed25519, sign_envelope_hmac
signed = sign_envelope_ed25519(envelope, private_key, 'k1')
signed = sign_envelope_hmac(envelope, shared_secret, 'k1')
Rust:
use protocol_7h3::{sign_envelope_ed25519, sign_envelope_hmac};
let signed = sign_envelope_ed25519(&envelope, &private_key, "k1")?;
let signed = sign_envelope_hmac(&envelope, &shared_secret, "k1")?;
Go:
signed, err := go7h3.SignEnvelopeEd25519(env, privateKey, "k1")
signed, err := go7h3.SignEnvelopeHmac(env, sharedSecret, "k1")
Verifying
TypeScript:
import { verifyEnvelopeEd25519, verifyEnvelopeHmac } from '@7h3/protocol'
const result = await verifyEnvelopeEd25519(signed, publicKey)
// { ok: true } or { ok: false, error: 'TTL expired' | 'signature verification failed' | ... }
const result2 = await verifyEnvelopeHmac(signed, sharedSecret)
Python:
from protocol_7h3 import verify_envelope_ed25519
result = verify_envelope_ed25519(signed, public_key)
if not result['ok']:
raise ValueError(result['error'])
Rust:
use protocol_7h3::verify_envelope_ed25519;
let result = verify_envelope_ed25519(&signed, &public_key)?;
Go:
ok, err := go7h3.VerifyEnvelopeEd25519(signed, publicKey)
Transports
The same signed envelope is carried differently per transport. Verification logic is identical.
HTTP / REST
The signed envelope travels as a JSON value in the x-7h3-envelope header.
Signing outbound requests:
import { signHttpRequest } from '@7h3/protocol'
const headers = await signHttpRequest({
method: 'POST',
url: 'https://api.example.com/action',
body: JSON.stringify(payload),
sender: 'agent.alpha',
privateKey: myPrivateKey,
keyId: 'k1',
intent: 'TASK',
})
await fetch('https://api.example.com/action', {
method: 'POST',
headers: { ...headers, 'Content-Type': 'application/json' },
body: JSON.stringify(payload),
})
Verifying inbound requests (Express middleware):
import { verifyHttpEnvelope } from '@7h3/protocol'
app.use(async (req, res, next) => {
const result = await verifyHttpEnvelope(req.headers, {
getPublicKey: async (senderId) => keyStore[senderId],
})
if (!result.ok) return res.status(401).json({ error: result.reason })
req.sender = result.sender
next()
})
Python:
from protocol_7h3 import verify_http_envelope, sign_http_request
# Signing
headers = sign_http_request(
method='POST', url='https://api.example.com/action',
body=json.dumps(payload), sender='agent.alpha',
private_key=my_private_key, key_id='k1', intent='TASK'
)
# Verifying (FastAPI/Flask middleware)
result = verify_http_envelope(request.headers, key_registry=key_store)
Go:
// Middleware
func Middleware(keyRegistry go7h3.KeyRegistry) func(http.Handler) http.Handler {
return go7h3.Middleware(keyRegistry)
}
CBOR encoding (smaller payloads):
const headers = await signHttpRequest({ ...opts, format: 'cbor' })
// Content-Type: application/7h3-cbor
// Payload ~40% smaller
WebSocket
Every frame is individually signed. Sequence numbers prevent reordering attacks.
import { createWsBinding } from '@7h3/protocol'
const ws = new WebSocket('wss://api.example.com')
// Sender
const binding = createWsBinding(ws, {
sender: 'agent.alpha',
privateKey: myPrivateKey,
keyId: 'k1',
})
binding.send({ intent: 'TASK', content: 'do something' })
// Receiver
const serverBinding = createWsBinding(ws, {
getPublicKey: async (senderId) => keyStore[senderId],
})
serverBinding.onMessage((envelope) => {
console.log('Verified from:', envelope.header.sender)
})
gRPC
Envelope in 7h3-envelope-bin gRPC metadata (binary base64).
import { grpcSigningInterceptor, grpcVerifyingInterceptor } from '@7h3/protocol'
// Client interceptor
const client = new MyServiceClient(address, credentials, {
interceptors: [grpcSigningInterceptor({ sender: 'agent.alpha', privateKey, keyId: 'k1' })],
})
// Server interceptor
const server = new grpc.Server()
server.addService(MyService, grpcVerifyingInterceptor({
implementation: myHandler,
getPublicKey: async (senderId) => keyStore[senderId],
}))
Message Queues
Envelope wraps payload as { envelope, payload }. Works with SQS, RabbitMQ, Kafka, Pub/Sub.
import { signQueueMessage, verifyQueueMessage } from '@7h3/protocol'
// Producer
const message = await signQueueMessage(
{ taskId: '123', action: 'process' },
{ sender: 'agent.alpha', privateKey, keyId: 'k1', intent: 'TASK' }
)
await queue.send(JSON.stringify(message))
// Consumer
const result = await verifyQueueMessage(JSON.parse(rawMessage), {
getPublicKey: async (senderId) => keyStore[senderId],
})
if (result.ok) processTask(result.payload)
Webhooks
Compact x-7h3-sig header (HMAC or Ed25519) plus x-7h3-ts timestamp.
import { signWebhook, verifyWebhook } from '@7h3/protocol'
// Sender
const headers = await signWebhook(body, sharedSecret)
// Sets: x-7h3-sig, x-7h3-ts
// Receiver
const result = await verifyWebhook({
body,
signature: req.headers['x-7h3-sig'],
timestamp: req.headers['x-7h3-ts'],
secret: webhookSecret,
maxAgeMs: 300_000,
})
if (!result.ok) return res.status(401).end()
Gateway
The Protocol7h3Gateway is a reverse proxy that verifies envelopes before forwarding to upstream. Drop it in front of any existing service.
import { createGateway } from '@7h3/protocol'
const gateway = createGateway({
upstream: 'http://localhost:3001',
port: 3000,
keyRegistry: { getPublicKey: async (id) => keyStore[id] },
policies: [
{
pathGlob: '/api/admin/**',
allowedSenders: ['agent.admin'],
rateLimit: { maxRequests: 10, windowMs: 60_000 },
},
{
pathGlob: '/api/**',
allowedSenders: ['agent.alpha', 'agent.beta'],
rateLimit: { maxRequests: 100, windowMs: 60_000 },
},
],
defaultPolicy: { allowedSenders: [] }, // deny unmatched routes
signResponses: true,
privateKey: gatewayPrivateKey,
sender: 'gateway',
metricsPath: '/metrics',
})
gateway.listen(3000)
Gateway architecture:
flowchart TB
subgraph Inbound
A[Agent Request\nx-7h3-envelope] --> B[Verify Signature]
B --> C[Check TTL + Nonce]
C --> D[Match Route Policy]
D --> E[Rate Limit by Sender]
end
subgraph Upstream
E -->|pass| F[Service\nx-7h3-sender: agent.alpha\nx-7h3-verified: true]
E -->|deny| G[401 / 403 / 429]
end
subgraph Outbound
F --> H[Sign Response\nx-7h3-response: sig]
H --> A
end
YAML config (for CLI):
# 7h3.example.yaml
upstream: http://localhost:3001
port: 3000
sender: gateway
metrics_path: /metrics
key_registry:
agent.alpha: base64url-public-key-here
agent.beta: base64url-public-key-here
policies:
- path_glob: /api/admin/**
allowed_senders: [agent.admin]
rate_limit: { max_requests: 10, window_ms: 60000 }
- path_glob: /api/**
allowed_senders: [agent.alpha, agent.beta]
rate_limit: { max_requests: 200, window_ms: 60000 }
Cloudflare Workers
cloudflare/ contains a complete Cloudflare Workers deployment — a cryptographic reverse proxy that enforces 7h3 signing on all inbound traffic, using KV for distributed key registry and nonce replay protection across all Cloudflare PoPs.
Caller ──[x-7h3-envelope]──▶ 7h3 Gateway Worker ──[clean + x-7h3-sender]──▶ Upstream
Ed25519 signed verify + strip your Worker
One-command setup
cd cloudflare
npm install
npm run setup # generates keypair, creates KV namespaces, stores secret
Then set UPSTREAM_URL in wrangler.toml and deploy:
npm run deploy:staging
npm run deploy:production
Middleware for existing Workers
Add 7h3 verification to any existing Worker without a full reverse-proxy setup:
import { create7h3Middleware } from './cloudflare/src/middleware'
export default {
async fetch(request: Request, env: Env, ctx: ExecutionContext) {
const mw = create7h3Middleware(env)
const check = await mw.verify(request)
if (!check.ok) return check.response // 401 or 403
// check.sender holds the verified agent identity
return myHandler(request, env, ctx)
},
}
What's included
| File | Purpose |
|---|---|
cloudflare/src/worker.ts |
Standalone gateway entry point |
cloudflare/src/middleware.ts |
create7h3Middleware() for existing Workers |
cloudflare/src/kv-replay-store.ts |
KV-backed nonce dedup (cross-instance) |
cloudflare/src/kv-key-registry.ts |
KV-backed public key registry |
cloudflare/src/durable-replay.ts |
Durable Object for fully atomic replay |
cloudflare/wrangler.toml |
KV bindings, env vars, staging + production |
cloudflare/scripts/cf-setup.ts |
First-time setup automation |
cloudflare/DEPLOY.md |
Step-by-step deployment guide |
Replay protection tiers
| Store | Consistency | Setup |
|---|---|---|
KvReplayStore (default) |
Strong within datacenter, ~60ms global lag | KV namespace (free plan) |
DurableReplayStore |
Fully atomic, zero race window | Durable Objects (paid plan) |
Register trusted agent public keys in KV:
wrangler kv:key put --namespace-id <ID> \
"7h3:pk:[email protected]" "<base64url-ed25519-spki-pubkey>"
Key discovery is served automatically at GET /.well-known/7h3-keys.
AI Coding Agents
7h3 Protocol ships first-class support for AI coding environments. Each tool reads its config automatically — no plugin installation required.
| Tool | Config file | What it gets |
|---|---|---|
| Claude Code | CLAUDE.md + MCP server |
Live keygen/sign/verify/scaffold tools + full repo context |
| GPT Codex | AGENTS.md |
Full integration patterns, snippets, invariants |
| Opencode | AGENTS.md |
Same |
| Grok Builder | AGENTS.md |
Same |
Claude Code — MCP server
Install the MCP server once to get live tools in every Claude Code session:
claude mcp add 7h3-protocol -- npx -y @7h3/protocol-mcp
Or copy .claude/settings.example.json → .claude/settings.json in your project.
Available MCP tools:
| Tool | Description |
|---|---|
7h3_generate_keypair |
Generate an Ed25519 keypair |
7h3_generate_secret |
Generate a 32-byte HMAC secret |
7h3_sign |
Sign a test envelope for debugging |
7h3_verify |
Verify an envelope's signature, TTL, and shape |
7h3_scaffold |
Generate integration code for a framework (see below) |
7h3_mcp_config |
Get install config for Claude Code, Cursor, Opencode, Grok |
7h3_wrap_mcp_server |
Generate boilerplate to wrap an MCP handler with 7h3 |
7h3 add — scaffold any project
Generate ready-to-paste integration code from the CLI:
# Framework integrations
npx 7h3 add --framework cloudflare-worker --sender [email protected]
npx 7h3 add --framework nextjs --sender [email protected]
npx 7h3 add --framework express --sender [email protected]
npx 7h3 add --framework hono --sender [email protected]
npx 7h3 add --framework fastify --sender [email protected]
# AI tool setup instructions
npx 7h3 add --framework claude-code
npx 7h3 add --framework opencode
npx 7h3 add --framework codex
npx 7h3 add --framework grok
# Write to a file
npx 7h3 add --framework hono --output middleware/7h3-auth.ts
When called from the MCP server, 7h3_scaffold does the same — Claude Code can call it directly and paste the result into your file.
MCP (Claude Tool Calls)
Claude's tool-calling mechanism is MCP (Model Context Protocol) — plain JSON-RPC 2.0. 7h3 Protocol hardens MCP traffic without any changes to your handler.
flowchart LR
CA[Claude] -->|Signed JSON-RPC| MW[7h3 MCP Wrapper]
MW -->|Verify sig\ncheck replay\nrecipient binding| MH[Your MCP Handler]
MH -->|Response| MW
MW -->|Sign response\ncorrelation binding| CA
Server side:
import { wrapMcpServer, signEnvelopeEd25519 } from '@7h3/protocol'
const secureServer = wrapMcpServer(myMcpHandler, {
selfAgentId: 'my-mcp-server',
sign: (e) => signEnvelopeEd25519(e, serverPrivateKey, 'k1'),
keyRegistry: {
getPublicKey: async (senderId) => clientPublicKeys[senderId],
},
})
Client side:
import { wrapMcpClient, signEnvelopeEd25519 } from '@7h3/protocol'
const { send } = wrapMcpClient({
selfAgentId: 'claude-agent',
peerAgentId: 'my-mcp-server',
sign: (e) => signEnvelopeEd25519(e, clientPrivateKey, 'k1'),
receive: {
signatureResolver: async () => ({ alg: 'ED25519', publicKey: serverPublicKey }),
},
})
const result = await send({ jsonrpc: '2.0', id: 1, method: 'tools/list' }, fetch)
The MCP handler itself is unchanged — zero migration. The wrapper handles all envelope logic at the boundary.
End-to-End Encryption
Signing proves authenticity. Encryption proves privacy. sealEnvelope combines both: the body is encrypted before signing so it's opaque to any intermediary, and signature is verified before decryption so tampering fails fast.
Forward secrecy is automatic — a fresh ephemeral X25519 keypair is generated per message.
sequenceDiagram
participant S as Alice (Sender)
participant R as Bob (Receiver)
S->>S: generateX25519KeyPair() → ephemeral keypair
S->>S: ECDH(ephemeral_priv, bob_x25519_pub) → shared_secret
S->>S: HKDF-SHA256(shared_secret, nonce) → encryption_key
S->>S: ChaCha20-Poly1305(key, body) → ciphertext
S->>S: Ed25519 sign(envelope with encrypted body)
S->>R: Sealed envelope (ciphertext only, body invisible)
R->>R: Verify Ed25519 signature FIRST
R->>R: ECDH(bob_priv, ephemeral_pub) → shared_secret
R->>R: HKDF → encryption_key
R->>R: ChaCha20-Poly1305 decrypt + verify AEAD tag
R->>R: Recover original body
Zero new dependencies — Node.js built-in crypto.ecdh + crypto.createCipheriv('chacha20-poly1305').
TypeScript:
import {
generateX25519KeyPair,
sealEnvelope,
openEnvelope,
} from '@7h3/protocol'
// Each agent needs an Ed25519 signing keypair + an X25519 encryption keypair
const aliceSign = await generateEd25519KeypairBase64Url()
const aliceEnc = await generateX25519KeyPair()
const bobSign = await generateEd25519KeypairBase64Url()
const bobEnc = await generateX25519KeyPair()
// Alice seals a message for Bob
const envelope = createEnvelope('alice', { intent: 'TASK', content: 'secret payload' })
const sealed = await sealEnvelope(envelope, {
recipientX25519PublicKey: bobEnc.publicKey,
senderEd25519PrivateKey: aliceSign.privateKey,
})
// sealed.body.intent === 'ENCRYPTED'
// sealed.body.content is the encrypted blob — opaque to any eavesdropper
// Bob opens it
const { body } = await openEnvelope(sealed, {
recipientX25519PrivateKey: bobEnc.privateKey,
senderEd25519PublicKey: aliceSign.publicKey,
})
// body.content === 'secret payload'
Python:
from protocol_7h3.encryption import generate_x25519_keypair, seal_envelope, open_envelope
alice_enc_pub, alice_enc_priv = generate_x25519_keypair()
bob_enc_pub, bob_enc_priv = generate_x25519_keypair()
sealed = seal_envelope(envelope, bob_enc_pub, alice_sign_priv)
body = open_envelope(sealed, bob_enc_priv, alice_sign_pub)
Go:
bobPub, bobPriv, _ := go7h3.GenerateX25519KeyPair()
sealed, _ := go7h3.SealEnvelope(env, bobPub, alicePriv)
env, body, _ := go7h3.OpenEnvelope(sealed, bobPriv, alicePub)
Capability Tokens and Delegation
Capability tokens let one agent grant another scoped, time-bounded, cryptographically verifiable authority — without sharing keys.
Example: service A grants service B permission to call /api/payments/** for 5 minutes. B can delegate a narrower scope to C. Any receiver can verify the full A → B → C chain.
flowchart LR
A[Root Agent] -->|"issue(scope:/payments/**)"|B[Agent B]
B -->|"delegate(scope:/payments/read)"| C[Agent C]
C -->|"x-7h3-capability: [A→B token, B→C token]"| D[Gateway]
D -->|"verifyChain"| E{Valid?}
E -->|yes| F[Upstream]
E -->|no| G[401]
Issue a token:
import { issueCapabilityToken } from '@7h3/protocol'
const token = await issueCapabilityToken({
issuerPrivateKey: rootPrivateKey,
issuerId: 'root-agent',
subject: 'agent.worker',
scopes: [
{ pathGlob: '/api/payments/**', methods: ['POST'], maxDelegations: 1 },
],
ttlMs: 300_000, // 5 minutes
maxDelegations: 1, // one more delegation hop allowed
})
Delegate a narrower scope:
import { delegateCapabilityToken } from '@7h3/protocol'
const delegation = await delegateCapabilityToken({
parentToken: token,
delegatorPrivateKey: workerPrivateKey,
delegatorId: 'agent.worker',
newSubject: 'agent.subworker',
scopes: [
{ pathGlob: '/api/payments/read', methods: ['GET'] }, // must be ⊆ parent
],
ttlMs: 60_000, // must not exceed parent's remaining TTL
})
Attach to HTTP request:
import { serializeCapabilityChain, CAP_HEADER } from '@7h3/protocol'
const headers = {
[CAP_HEADER]: serializeCapabilityChain([token, delegation]),
// x-7h3-capability: [base64-token-1, base64-token-2]
}
Verify a chain:
import { verifyCapabilityChain } from '@7h3/protocol'
const result = await verifyCapabilityChain(
chain,
{ getPublicKey: async (id) => keyStore[id] },
{ requiredPathGlob: '/api/payments/read', requiredMethod: 'GET' }
)
// { ok: true, token, chain } or { ok: false, reason: '...' }
Streaming Message Signing
LLM outputs are streams of tokens. 7h3 Streaming Signing gives each chunk a per-chunk HMAC and seals the entire stream with a final Ed25519 signature over the full content hash. Clients detect tampering mid-stream.
sequenceDiagram
participant LLM as Server
participant C as Client
LLM->>C: chunk 0: {i:0, d:"Hello ", h:HMAC0, f:false}
LLM->>C: chunk 1: {i:1, d:"world", h:HMAC1, f:false}
LLM->>C: chunk N: {i:N, d:".", h:HMACn, f:false}
LLM->>C: final: {i:N+1, d:"", h:HMAC_f, f:true, sig:Ed25519}
C->>C: Verify HMAC on each chunk (tamper detected immediately)
C->>C: Verify Ed25519 over full stream on final frame
Writing a signed stream:
import { SignedStreamWriter } from '@7h3/protocol'
const writer = new SignedStreamWriter({
privateKey: serverPrivateKey,
sender: 'llm.server',
keyId: 'k1',
})
for await (const token of llmTokenStream) {
const chunk = await writer.writeChunk(token)
ws.send(JSON.stringify(chunk))
}
ws.send(JSON.stringify(await writer.finalize()))
Reading and verifying:
import { SignedStreamReader } from '@7h3/protocol'
const reader = new SignedStreamReader({ publicKey: serverPublicKey })
ws.on('message', async (raw) => {
const chunk = JSON.parse(raw)
if (!chunk.f) {
const r = await reader.receiveChunk(chunk)
if (!r.ok) throw new Error(`Chunk ${chunk.i} tampered: ${r.reason}`)
appendToUI(chunk.d)
} else {
const result = await reader.finalize(chunk)
if (!result.ok) throw new Error(result.reason)
console.log(`Stream verified — ${result.chunkCount} chunks, ${result.totalBytes} bytes`)
}
})
Convenience wrappers for complete arrays:
import { signStream, verifyStream } from '@7h3/protocol'
const chunks = await signStream(
['Hello ', 'world', '.'],
{ privateKey, sender: 'llm', keyId: 'k1' }
)
const result = await verifyStream(chunks, { publicKey })
// { ok: true, totalBytes: 12, chunkCount: 3 }
WebSocket integration:
import { createSignedWebSocketStream, receiveSignedWebSocketStream } from '@7h3/protocol'
// Server side
const writer = await createSignedWebSocketStream(ws, { privateKey, sender: 'llm', keyId: 'k1' })
// Client side
const result = await receiveSignedWebSocketStream(ws, { publicKey })
Distributed Replay Cache (Redis)
The default in-memory replay cache breaks in multi-instance deployments. A replayed nonce can slip through between two gateway instances. Use RedisReplayStore in production.
import { createRedisReplayStore } from '@7h3/protocol'
const replayStore = createRedisReplayStore({ redisUrl: 'redis://localhost:6379' })
const gateway = createGateway({ ...opts, replayStore })
Redis Cluster (queries all nodes — a nonce is seen if ANY node has it):
import { createClusterReplayStore } from '@7h3/protocol'
const replayStore = createClusterReplayStore([
'redis://node-1:6379',
'redis://node-2:6379',
'redis://node-3:6379',
])
Inject your own Redis client:
import { RedisReplayStore } from '@7h3/protocol'
import { createClient } from 'redis'
const client = createClient({ url: 'redis://localhost:6379' })
await client.connect()
const replayStore = new RedisReplayStore({ client })
// RedisClientLike: any client implementing set(k, v, opts) + get(k)
// Works with ioredis, redis, @upstash/redis
Python:
from protocol_7h3.replay import create_redis_replay_store
store = create_redis_replay_store('redis://localhost:6379')
Go:
store := go7h3.NewRedisReplayStore("7h3:nonce:", func(ctx context.Context, key string, ttl time.Duration) (bool, error) {
return redisClient.SetNX(ctx, key, "1", ttl).Result()
})
Binary Wire Format (CBOR)
CBOR (RFC 8949 deterministic mode) produces ~40% smaller payloads compared to JSON. Uses numeric field keys for maximum compactness.
import { encodeEnvelopeCbor, decodeEnvelopeCbor, CBOR_CONTENT_TYPE } from '@7h3/protocol'
// Encode
const bytes: Uint8Array = encodeEnvelopeCbor(signedEnvelope)
// bytes.length ≈ 60% of JSON.stringify(signedEnvelope).length
// Decode
const envelope = decodeEnvelopeCbor(bytes)
// HTTP
await fetch(url, {
method: 'POST',
headers: { 'Content-Type': CBOR_CONTENT_TYPE }, // 'application/7h3-cbor'
body: bytes,
})
General-purpose CBOR (zero runtime deps):
import { encodeCbor, decodeCbor } from '@7h3/protocol'
const bytes = encodeCbor({ any: 'value', nested: [1, 2, 3], ok: true })
const value = decodeCbor(bytes)
Go:
bytes, err := go7h3.EncodeEnvelopeCBOR(env)
env, err := go7h3.DecodeEnvelopeCBOR(bytes)
Observability (Prometheus + OpenTelemetry)
Prometheus Metrics
Zero new dependencies — implements the Prometheus exposition format from scratch.
import { metrics, renderPrometheusText, createMetricsMiddleware } from '@7h3/protocol'
// Serve /metrics on your existing Express app
app.use(createMetricsMiddleware('/metrics'))
// Or render manually
app.get('/metrics', (req, res) => {
res.set('Content-Type', 'text/plain; version=0.0.4')
res.send(renderPrometheusText(metrics))
})
Available metrics:
| Metric | Type | Labels |
|---|---|---|
7h3_verifications_total |
counter | result (ok|fail), alg, transport |
7h3_verification_duration_ms |
histogram | — |
7h3_rate_limit_hits_total |
counter | sender, path |
7h3_sender_denials_total |
counter | sender, path |
7h3_replay_detections_total |
counter | transport |
7h3_audit_entries_total |
counter | type |
7h3_active_connections |
counter | transport |
CLI gateway:
7h3 gateway --config 7h3.example.yaml --metrics-port 9090
# http://localhost:9090/metrics
OpenTelemetry
No hard dependency — inject any OTel-compatible SDK:
import { setOtelProvider } from '@7h3/protocol'
import { trace } from '@opentelemetry/api'
setOtelProvider(trace.getTracerProvider())
// Spans emitted automatically for each verification:
// Span name: '7h3.verify', attributes: messageId, sender, alg, result
Post-Quantum Signatures (ML-DSA)
Ed25519 is broken by a sufficiently large quantum computer. ML-DSA (Dilithium, NIST FIPS 204, 2024) is the standardized post-quantum signature algorithm. @7h3/protocol-pq is a drop-in replacement for the signing functions — same envelope format, different alg field.
import { generatePqKeyPair, signEnvelopePq, verifyEnvelopePq } from '@7h3/protocol-pq'
import { createEnvelope } from '@7h3/protocol'
// Generate a post-quantum keypair
const { publicKey, privateKey, algorithm } = generatePqKeyPair('ML-DSA-65')
// publicKey: 1,952 bytes, base64url
// Sign (same envelope format)
const envelope = createEnvelope('agent.alpha', { intent: 'TASK', content: 'hello' })
const signed = await signEnvelopePq(envelope, privateKey, 'ML-DSA-65')
// signed.signature.alg === 'ML-DSA-65'
// Verify
const ok = await verifyEnvelopePq(signed, publicKey)
| Algorithm | NIST Level | Public key | Signature size |
|---|---|---|---|
ML-DSA-44 |
2 (128-bit post-quantum) | 1,312 bytes | 2,420 bytes |
ML-DSA-65 |
3 (192-bit post-quantum) | 1,952 bytes | 3,293 bytes |
ML-DSA-87 |
5 (256-bit post-quantum) | 2,592 bytes | 4,595 bytes |
Python:
from protocol_7h3.pq import generate_ml_dsa_keypair, sign_envelope_pq, verify_envelope_pq
pub, secret = generate_ml_dsa_keypair(level=65)
signed = sign_envelope_pq(envelope, secret, level=65)
ok = verify_envelope_pq(signed, pub, level=65)
Threshold Signatures (M-of-N BLS)
High-stakes operations require M of N agents to co-sign before a message is valid. BLS12-381 aggregation: M agents sign independently, any party combines the M signatures into one, any verifier checks it with a single verify call identical to a regular verify.
flowchart LR
subgraph "5 Participants (sign independently)"
A1[Agent 1] --> Agg
A2[Agent 2] --> Agg
A3[Agent 3] --> Agg
end
Agg["Aggregate\n3 sigs → 1 sig"] --> V[Verifier]
V -->|Single verify call| Up[Upstream]
style Agg fill:#6366f1,color:#fff
import {
generateBlsKeyPair,
signEnvelopeBls,
aggregateSignatures,
verifyThresholdEnvelope,
} from '@7h3/protocol-threshold'
// Setup: 5 participants, require 3 to sign
const keys = Array.from({ length: 5 }, () => generateBlsKeyPair())
const config = { m: 3, n: 5 }
// Create the envelope (unsigned)
const envelope = createEnvelope('council', { intent: 'TASK', content: 'deploy v2' })
// Any 3 participants sign independently — order doesn't matter
const partial1 = await signEnvelopeBls(envelope, keys[0].privateKey, 'agent-1')
const partial2 = await signEnvelopeBls(envelope, keys[1].privateKey, 'agent-2')
const partial3 = await signEnvelopeBls(envelope, keys[2].privateKey, 'agent-3')
// Any party aggregates the 3 partial signatures
const publicKeys = {
'agent-1': keys[0].publicKey,
'agent-2': keys[1].publicKey,
'agent-3': keys[2].publicKey,
}
const thresholdEnvelope = await aggregateSignatures(
[partial1, partial2, partial3],
publicKeys,
envelope,
config,
)
// Verifier performs a single verify call
const allPublicKeys = Object.fromEntries(keys.map((k, i) => [`agent-${i+1}`, k.publicKey]))
const ok = await verifyThresholdEnvelope(thresholdEnvelope, allPublicKeys, config)
Shamir Secret Sharing — split one master BLS key into N shares; any M reconstruct it:
import { splitPrivateKey, reconstructPrivateKey } from '@7h3/protocol-threshold'
const masterKey = generateBlsKeyPair().privateKey
const shares = splitPrivateKey(masterKey,
No comments yet
Be the first to share your take.