Command line tool for encrypting files
AES-256-GCM
for complete data encryptionscrypt
to prevent brute force crackingbrotli
compression file Optionaldirectory
and file
Linux
macOS
Windows
aef
has not undergone any security check1.0
Download the binary from the release page
Or use cargo
to install
bash
cargo install aef
bash
aef -i ./files/ -o ./dist.aef
bash
aef -i ./dist.aef -o ./files/ -d
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
aef -i ./files/ -o ./dist.aef -p 123456
aef
support the use of brotli
to compress files, you can use the -c
option to specify the compression level
-c 0
-c 11
bash
aef -i ./files -o ./dist.aef -c 0
If input/output
is not specified, aef will read/write
from stdin/stdout