aef GitHub Workflow Status Crates.io

Command line tool for encrypting files

Features

⚠️ Warning

Install

Download the binary from the release page

Or use cargo to install

bash cargo install aef

Usage

Encryption

bash aef -i ./files/ -o ./dist.aef

Decryption

bash aef -i ./dist.aef -o ./files/ -d

Password

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

Compress

aef support the use of brotli to compress files, you can use the -c option to specify the compression level

bash aef -i ./files -o ./dist.aef -c 0

Pipe

If input/output is not specified, aef will read/write from stdin/stdout