Forked from robert2d/bash-cli-openssl-stdin-encryption
Last active
February 9, 2021 14:24
-
-
Save ddepaoli3/7b3e916d5052a0ce701643366847552a to your computer and use it in GitHub Desktop.
Bash $STDIN Encryption with openssl and aes256
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Encrypt in base64 output STDIN and provide a password(prompt) | |
echo "message" | openssl enc -base64 -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