Created
November 6, 2013 17:07
-
-
Save antespi/7340038 to your computer and use it in GitHub Desktop.
HowTo: Decode/Encode base64 using OpenSSL
This file contains 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
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