Encrypt and Decrypt files with Advanced Encryption Standard.
| COMMAND | DESCRIPTION |
|---|---|
| -e / --encrypt | Encrypt file |
| -d / --decrypt | Decrypt file |
| -b / --buffersize | Buffer size (128 / 192 / 256) |
| -p / --password | Password to encrypt and decrypt file |
| -h / --help | Request help |
> git clone https://github.com/R3LI4NT/AEScrypter
> cd AEScrypter
> pip3 install -r requirements.txt
> sudo apt-get install shred
EXAMPLE: File ENCRYPTED
python3 AEScrypter.py -e <file> -b <buffersize> -p <password>EXAMPLE: File DECRYPTED
python3 AEScrypter.py -d <file> -b <buffersize> -p <password>Package by: https://www.aescrypt.com/


