aef GitHub Workflow Status Crates.io

aef is an encrypted file archiver, it uses AES-256-GCM to fully encrypt data and  scrypt  to prevent brute force data cracking. It also allows the use of Brotli to reduce the size of archived 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

Compress at the fastest speed

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

Adjust the compress quality

aef -i ./files -o ./dist.aef -c 8 ```

Help

bash aef --help

```bash Usage: aef [OPTIONS]

Options: -i, --input File | Stdin -o, --output File | Stdout -p, --password Set password -d, --decrypt Decrypt file -c, --compress [] Set compression level [0 - 11] --scrypt-log-n Set scrypt params [default: 20] --scrypt-r Set scrypt params [default: 8] --scrypt-p Set scrypt params [default: 1] -h, --help Print help -V, --version Print version ```