Created
May 4, 2016 08:30
-
-
Save ratajczak/f97c8746bdc5070e9b1a27aad89675fb to your computer and use it in GitHub Desktop.
base64 bash vs php
This file contains hidden or 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
echo aaa | base64 | |
YWFhCg== | |
php -r "echo base64_encode('aaa') . PHP_EOL;" | |
YWFh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment