decode base64 string with openssl
On OS X you can easily decode base64 strings with the openssl command
openssl base64 -d -in <(echo "dGhpcyBpcyBhIHRlc3QKCg==")
just drop the '-d' if you want to encode things.
I found this here
On OS X you can easily decode base64 strings with the openssl command
openssl base64 -d -in <(echo "dGhpcyBpcyBhIHRlc3QKCg==")
just drop the '-d' if you want to encode things.
I found this here