Created
February 6, 2021 11:58
-
-
Save codexponent/5cb53c7da4f2e6b5e0e4a658bfee84d9 to your computer and use it in GitHub Desktop.
Strictly Encoding to Base64
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
| import base64 | |
| data = open("script.sh", "rb").read() | |
| encoded = base64.b64encode(data) | |
| print(encoded) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment