A Rust CLI to encrypt the current working directory with Fernet encryption.
Fernet guarantees that a message encrypted using it cannot be manipulated or read without the key. Fernet is an implementation of symmetric (also known as “secret key”) authenticated cryptography.
Find more about Fernet here
Make sure you have cargo
in your $PATH
bash
cargo install --git https://github.com/stefins/wdcrypt-rs --branch main
``` wdcrypt 0.1.0 Stef stefin2016@gmail.com Encrypt your current working directory
USAGE: wdcrypt [FLAGS]
FLAGS: -d, --decrypt Decrypt the current working directory with key -e, --encrypt Encrypt the current working directory -h, --help Prints help information -V, --version Prints version information ```
MIT