age
CLISimple, modern file encryption with small explicit keys.
0 views
Installation
Homebrew
brew install ageLinks
License
BSD-3-ClauseAI Agent Notes
Simple file encryption/decryption with age keys or SSH keys
When to use
Encrypting files or secrets for storage or transfer
Examples
age -r pubkey -o secret.age secret.txtage -d -i key.txt secret.age
Proven Recipes
Generate a new age key pair🟢 99% success
age-keygen -o key.txtEncrypt a file🟢 92% success
age -r $(age-keygen | grep 'public key' | awk '{print $3}') -o secret.age plaintext.txtDecrypt a file🟢 98% success
age -d -i key.txt secret.age > plaintext.txt