Last active
July 22, 2023 01:49
-
-
Save KenjiOhtsuka/d1b0200895c69a095ad6eb2766c76fae to your computer and use it in GitHub Desktop.
Add missing padding when decoding base 64 in Python
This file contains 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
""" | |
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