Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save f0r34chb3t4/afd07038abb761d92814cf03f20ee80b to your computer and use it in GitHub Desktop.
Save f0r34chb3t4/afd07038abb761d92814cf03f20ee80b to your computer and use it in GitHub Desktop.
Bash $STDIN Encryption with openssl and aes256
# Encrypt STDIN and provide a password(prompt)
echo "message" | openssl enc -aes-256-cbc -a
# Decrypt STDIN and provide a password(prompt)
echo "encrypted" | openssl enc -aes-256-cbc -a -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment