aescrypt-packetizer

Encrypt and decrypt data using 256-bit AES encryption

brewmacoslinux
Try with needOr install directly
Source

About

Encrypt and decrypt using 256-bit AES encryption

Commands

aescrypt-packetizer

Examples

Encrypt a file with a password$ aescrypt-packetizer encrypt -p mypassword input.txt output.aes
Decrypt an encrypted file$ aescrypt-packetizer decrypt -p mypassword output.aes decrypted.txt
Encrypt text from stdin and output to file$ echo 'secret data' | aescrypt-packetizer encrypt -p mypassword > encrypted.aes