Skip to content

Instantly share code, notes, and snippets.

@flamanta
Last active July 2, 2019 04:20
Show Gist options
  • Save flamanta/23ec742feb49e532c5110044f4003350 to your computer and use it in GitHub Desktop.
Save flamanta/23ec742feb49e532c5110044f4003350 to your computer and use it in GitHub Desktop.
[Convert str to base32 or base64] #base32 #base64
import base64
base64.b64encode(s) # encode a string in Base64
base64.b64decode(s) # decode a Base64 encoded string
base64.b32encode(s) # encode a string in Base32
base64.b32decode(s) # decode a Base32 encoded string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment