about-us.md

security

Small keys.
Short expiries.
Boring cryptography.

about-us.md uses primitives that stopped being controversial fifteen years ago: ed25519 signatures, JWKS-shaped key discovery, short-lived scoped envelopes, and a public revocation ledger. No new maths. No custom hash functions. No secret-sharing dances. Just enough plumbing to make identity portable.

Key model

Discovery

GET https://username.md/u/aclay/.well-known/keys { "keys": [ { "kid": "aclay-2026-06", "kty": "OKP", "crv": "Ed25519", "x": "…", "use": "sig", "expires": "2027-06-01T00:00:00Z" } ], "ttl": 60 }

Standard JWKS shape with a small extension: ttl is the cache guidance, and expires lets you reject even-if-cached keys past their retirement.

Revocation

Replay defense

Threat model — what we protect against

ThreatLegacyabout-us.md
Email spoof Widely trusted Signature over from — no valid envelope from a spoofed handle
SIM swap SMS 2FA falls Handle key survives — recovery re-proves ownership, not phone number
Password reuse Credential stuffing No password to reuse — signature or nothing
Rogue AI agent Blocked or trusted, all-or-nothing Only listed subkeys act; unknown agents fail verification
Replay of intercepted request Often possible Nonce + expires + audience — replay window is minutes and single-use

What we don't try to solve

Reporting

Found something? Email security@holdingco.com — signed envelopes appreciated but not required.