Encrypt or decrypt data in pipes using AES encryption
AES encryption or decryption for pipes
aespipe$ aespipe -e -p mypassword < input.txt > input.txt.aes$ aespipe -d -p mypassword < input.txt.aes > output.txt$ echo 'sensitive data' | aespipe -e -p mypassword | base64