Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@alinz
Created November 12, 2019 00:13
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 alinz/dd11f4698f8380bdd4aa70237f9492a6 to your computer and use it in GitHub Desktop.
Save alinz/dd11f4698f8380bdd4aa70237f9492a6 to your computer and use it in GitHub Desktop.
OPENSSL encrypt decrypt
openssl aes-256-cbc -in plain.txt -out plain.enc -k cool
openssl aes-256-cbc -d -in plain.enc -out plain.txt -k cool
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment