Created
July 30, 2012 21:22
-
-
Save bds/3210386 to your computer and use it in GitHub Desktop.
Encrypt and decrypt files with openssl
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
# http://osxdaily.com/2012/01/30/encrypt-and-decrypt-files-with-openssl/ | |
# Encrypt | |
openssl des3 -in file.txt -out encrypted.txt | |
# Decrypt | |
openssl des3 -d -in encrypted.txt -out normal.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment