From b65bc23face130e59a95ca1fc6c78665d0f98c4d Mon Sep 17 00:00:00 2001 From: TornaxO7 Date: Sun, 29 Oct 2023 16:22:48 +0100 Subject: [PATCH] rage: add page (#11323) --- pages/common/rage.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pages/common/rage.md diff --git a/pages/common/rage.md b/pages/common/rage.md new file mode 100644 index 000000000..a05c0d0f7 --- /dev/null +++ b/pages/common/rage.md @@ -0,0 +1,13 @@ +# rage + +> A simple, secure and modern file encryption tool (and Rust library) with small explicit keys, no config options, and UNIX-style composability. +> Rust implementation of `age`. +> More information: . + +- Encrypt a file for `user` and save it to `message.age`: + +`echo "{{Your secret message}}" | rage --encrypt --recipient {{user}} --output {{path/to/message.age}}` + +- Decrypt a file with `identity_file` and save it to `message`: + +`rage --decrypt --identity {{path/to/identity_file}} --output {{message}}`