Cryptographic identity and signing for software supply chains.
No central authority. No CA. No server. Just Git and cryptography.
brew tap auths-dev/auths-cli
brew install auths
auths init # create your identity
auths sign ./release.tar.gz # sign an artifact
auths verify ./release.tar.gz # verify itHomebrew:
brew tap auths-dev/auths-cli
brew install authsInstall from source:
cargo install --git https://github.com/auths-dev/auths.git auths_cliThis installs auths, auths-sign, and auths-verify.
auths initFollow the prompts. This creates your cryptographic identity and stores the key securely in your system keychain.
auths statusOutput:
Identity: did:keri:EBf2cE...
Key aliases: main
Witnesses: none designated
Agent: stopped
Devices: none
auths init already configured Git commit signing (gpg.format, commit.gpgsign), so just commit:
git commit -m "My first signed commit"Verify it:
auths verify HEADOutput:
Commit a1b2c3d verified: signed by did:keri:EBf2cE...
That's it. Your commits are now cryptographically signed with your decentralized identity.
Want the whole loop in one shot? auths demo signs and verifies a sample artifact in under 30 seconds.
Auths stores your identity and device attestations in a Git repository (~/.auths by default). Each device link is a cryptographically signed attestation stored as a Git ref.
- Identity: A
did:keriderived from your Ed25519 key - Devices:
did:keyidentifiers linked via signed attestations - Keys: Stored in your OS keychain (macOS Keychain, or encrypted file fallback)
- Attestations: Stored in Git refs under
refs/auths/
No central server. No blockchain. Just Git and cryptography.
| Command | Description |
|---|---|
auths init |
Initialize identity (also configures Git signing) |
auths demo |
Sign + verify a sample artifact in 30 seconds |
auths sign <file> |
Sign an artifact |
auths verify <target> |
Verify a commit (e.g. HEAD) or signed artifact |
auths status |
Show identity and device overview |
auths whoami |
Print your identity DID |
auths pair |
Link another device via QR / short code |
auths trust pin |
Pin a trusted identity |
auths doctor |
Diagnose setup issues |
auths tutorial |
Interactive guided tour |
Run auths --help for full documentation, or auths --help-all to include advanced commands.
Apache 2.0