From c700f1a695e5424766024bb0fd70b390ac8380db Mon Sep 17 00:00:00 2001 From: Sam Hadow Date: Thu, 24 Sep 2026 17:30:49 +0200 Subject: [PATCH] README: update --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d9384f..8b2256a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # filecrypt-rs Cli tool in Rust to encrypt and decrypt files with an Ascon-Keccak AEAD. -The PBKDF is not yet implemented and is just SHA256(password) for now +The PBKDF is not yet implemented and is just SHA256(password) for now. ## Commands @@ -10,9 +10,17 @@ The PBKDF is not yet implemented and is just SHA256(password) for now ```bash filecrypt-rs encrypt --input --output --password ``` +Short arguments can also be used: +```bash +filecrypt-rs encrypt -i -o -p +``` ### Decrypt a file ```bash filecrypt-rs decrypt --input --output --password ``` +Short arguments can also be used: +```bash +filecrypt-rs decrypt -i -o -p +```