Util for file encryption
AES-256-GCM
scrypt
to prevent brute force crackingDownload the binary from the release page
Or use cargo
to install
bash
cargo install aef
Encryption
bash
cat your.file | aef > your.aef
Decryption
bash
cat your.aef | aef -d > your.file
By default you will enter your password in the terminal, if you don't want to enter it manually you can use the -p
option
bash
cat your.file | aef -p 123456 > your.aef