aespipe

Encrypt or decrypt data in pipes using AES encryption

brewmacoslinux
Try with needOr install directly
Source

About

AES encryption or decryption for pipes

Commands

aespipe

Examples

Encrypt a file with AES-256 using a password$ aespipe -e -p mypassword < input.txt > input.txt.aes
Decrypt a file encrypted with aespipe$ aespipe -d -p mypassword < input.txt.aes > output.txt
Encrypt data from stdin and pipe to another command$ echo 'sensitive data' | aespipe -e -p mypassword | base64