| home |
true |
| title |
Home |
| heroText |
A command-line secret manager for developers, sysadmins, and devops |
| tagline |
|
| description |
A command-line secret manager for developers, sysadmins, and devops |
| heroImage |
/images/hero.png |
| actions |
| text |
link |
type |
Get Started |
/guide/installation.html |
primary |
|
| text |
link |
type |
GitHub |
//github.com/loderunner/scrt |
secondary |
|
|
| features |
| title |
image |
details |
No Background Process |
/images/no-background.svg |
No service or daemon to install. Read and write secrets with a single command, on Linux/Windows/macOS. |
|
| title |
image |
details |
Intuitive Interface |
/images/command-line.svg |
Straightforward key-value interface: use set/get/unset commands to manipulate secrets |
|
| title |
image |
details |
Local Encryption/Decryption |
/images/laptop-user.svg |
All cryptography happens in the client, on your computer: no passwords, keys or plaintext data over the Internet. |
|
| title |
image |
details |
Highly Configurable |
/images/settings.svg |
Fully configure options with command line arguments, configuration files or environment variables (no unexpected defaults!) |
|
| title |
image |
details |
Choose Your Own Storage |
/images/cloud-storage.svg |
Multiple storage backend options: local filesystem, AWS S3 or S3-compatible object storage, git repository... |
|
| title |
image |
details |
Robust Secrecy |
/images/lock.svg |
NIST-approved, industry-grade cryptography standards: AES-256 encryption and Argon2id key derivation |
|
|
| footer |
Copyright © Charles Francoise 2021 |
Secure secret management from the command line
# Set store password in environment
$ export SCRT_PASSWORD=*******
# Add a secret to the store
$ scrt set greeting 'Good news, everyone!'
# Retrieve the secret from the store
$ scrt get greeting
Good news, everyone!