mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
87c9a4b69c
Co-authored-by: Ivan Baluta <ivanbaluta.dev@gmail.com>
551 B
551 B
rage
A simple, secure, and modern file encryption tool (and Rust library) with small explicit keys, no configuration options, and UNIX-style composability. Rust implementation of
age. More information: https://github.com/str4d/rage.
- Encrypt a file for
userand save it tomessage.age:
echo "{{Your secret message}}" | rage --encrypt --recipient {{user}} --output {{path/to/message.age}}
- Decrypt a file with
identity_fileand save it tomessage:
rage --decrypt --identity {{path/to/identity_file}} --output {{message}}