Skip to content

Instantly share code, notes, and snippets.

@ymmn
Created April 4, 2017 23:09
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 ymmn/f769a6895edab33d99762f24c3875d8c to your computer and use it in GitHub Desktop.
Save ymmn/f769a6895edab33d99762f24c3875d8c to your computer and use it in GitHub Desktop.
# encrypt
openssl enc -aes-256-cbc -in un_encrypted.data -out encrypted.data
# decrypt
openssl enc -d -aes-256-cbc -in encrypted.data -out un_encrypted.data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment