Skip to content

Instantly share code, notes, and snippets.

@KenjiOhtsuka
Last active July 22, 2023 01:49
Show Gist options
  • Save KenjiOhtsuka/d1b0200895c69a095ad6eb2766c76fae to your computer and use it in GitHub Desktop.
Save KenjiOhtsuka/d1b0200895c69a095ad6eb2766c76fae to your computer and use it in GitHub Desktop.
Add missing padding when decoding base 64 in Python
"""
Sometimes we got base64 string without padding and python can't decode it as it is.
We have to add missing paddings and here is the code.
Especially, JWT token contains Base64 string withoug padding,
where padding must not added.
"""
import base64
text = 'c2FtcGxlIQ'
text += '=' * ((4 - len(text) % 4) % 4)
result = base64.b64decode(text).decode()
print(result)
# If you need a function:
#
# def decode_base64(text):
# import base64
#
# text += '=' * ((4 - len(text) % 4) % 4)
# return base64.b64decode(text).decode()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment