Skip to content

Instantly share code, notes, and snippets.

@bds
Created July 30, 2012 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bds/3210386 to your computer and use it in GitHub Desktop.
Save bds/3210386 to your computer and use it in GitHub Desktop.
Encrypt and decrypt files with openssl
# 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