Secrets. Distributed. Secure.

An open-source secrets manager built in Rust with multi-node clustering,
military-grade encryption, and developer-first design.

Why Krypt?

Krypt is designed for teams who need enterprise-grade secrets management without the complexity. Built from the ground up in Rust, it combines the security of HashiCorp Vault with modern developer experience.

Quick Start

Get running in under a minute:

# Start with Docker
docker run -d -p 8200:8200 krypt/krypt:latest

# Or use the CLI
krypt engine create production --password "master-password"
krypt login production
krypt put production database/postgres user=admin password=secret
krypt get production database/postgres