What is Vouchsafe?
Vouchsafe is a specification for self-contained identity and trust. It defines how to use JWTs to express who someone is — and what they’re allowed to do — without lookups, shared secrets, or centralized databases.
In traditional systems, a user or service presents a secret, and the system performs a lookup to figure out who they are, whether to trust them and what permissions they have.
Vouchsafe flips that model.
Instead of asking a server, the user presents a self-issued token — and optionally other Vouchsafe tokens — that prove their identity and communicate exactly what actions they’re authorized to perform.
The tokens contain everything needed to validate those claims: the identity, the public key, and the cryptographic proof.
No central lookup. No guesswork. Just portable, verifiable trust — by design.
Too Long; Didn’t Read
Vouchsafe defines how to create a cryptographically provable identity — and how to express what that identity is allowed to do.
It also lets one identity vouch for another — delegating trust in a clear, verifiable way.
Built on JWTs, it works anywhere JWTs work — and requires no central authority, no key distribution, and no infrastructure.
Originally built for decentralized systems but useful anywhere identity and trust matter.
In short: portable, easy-to-use identity and trust, secured by strong cryptography.
How It Works
Vouchsafe starts with a cryptographic identity triple:
- A Vouchsafe ID — a human-readable URN, mathematically derived from a public key
- A public/private keypair — generated and controlled by the identity owner
- A binding — the ID is a fingerprint of the public key
That means the ID and key are inseparable: change the key, and the ID changes too. You can’t spoof or swap.
Here’s the clever part: The public key is included inside every Vouchsafe token.
In most systems, that would be a security risk — but not here.
Because the Vouchsafe ID is derived from the key itself, any mismatch between the ID and key fails instantly. No lookup. No registry. No config. Just math.
Each token is a standard JWT, with a few additional claims:
iss
— the Vouchsafe ID (identity)iss_key
— the public key- A signature — created using the matching private key
- Optional claims — for vouching, delegation, and purpose
A Closed Cryptographic Loop
Every token proves itself:
- The ID proves the public key is correct
- The signature proves the private key was used
- The public key proves the signature is valid
If those three checks pass — you can trust the identity.
No servers. No shared secrets. No directories. Just a token — and the math to prove it.
And because one identity can vouch for another, you can build portable webs of trust — delegating authority, granting permission, or verifying claims — all without infrastructure.
Why?
Decentralized services need identity, trust, and continuity — across devices, across time, and across connection gaps. Vouchsafe provides all of that, without centralized components.
Vouchsafe moves identity to the edge, where it’s safe from censorship, corporate capture, or institutional overreach.
It puts you in charge of your identity — not opaque systems or central servers.
It's revolutionary, but not complicated: Vouchsafe tokens are just JWTs with special fields and standardized validation rules — so they work anywhere JWTs work.
What Vouchsafe Solves
The Practical Upshot
Vouchsafe was built for decentralized systems — where traditional identity and trust mechanisms simply fall apart.
Vouchsafe gives you things that are difficult, awkward, or outright impossible without it: portable identity, offline verification, and flexible, scoped delegation — all without needing a blockchain, a central server, or a swarm of microservices.
It works in disconnected environments. It works in peer-to-peer apps. It works even if the devices involved have never talked before. And the best part? It’s human-scale.
You don’t need a data center. You don’t need a PhD in cryptography. If you can use JSON and JWTs, you can use Vouchsafe.
And because it’s built on familiar, widely supported standards, it works just as well in traditional systems — adding cryptographic trust and portable identity to APIs, services, and apps that already use JWTs today.
Whether you're building the next decentralized protocol, or just trying to fix broken login flows in a SaaS app — Vouchsafe has your back.
Ready to start building using Vouchsafe?
- 📦 Get the Library – Use it in your app today (reference library in JavaScript, browser or Node)
- 📖 Read the Spec – Everything is open, documented, and implementation-ready
Remember, vouchsafe already works anywhere JWTs work, so you can use it no matter what tech stack you are in. Talk to us on Discord if you are using it / creating a convenience library for other languages, we're happy to help.
Join the Community
- 💬 Join the Discord – Help shape the ecosystem
Who's behind this?
Vouchsafe was created by Jay Kuri. It is maintained by the folks at Ionzero.
Vouchsafe is an open protocol.
Copyright © 2025, Jay Kuri