Skip to content

Instantly share code, notes, and snippets.

@antespi
Created November 6, 2013 17:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antespi/7340038 to your computer and use it in GitHub Desktop.
Save antespi/7340038 to your computer and use it in GitHub Desktop.
HowTo: Decode/Encode base64 using OpenSSL
Decode
======
openssl enc -base64 -d <<< SGVsbG8sIFdvcmxkIQo=
Encode
======
openssl enc -base64 <<< 'Hello, World!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment