Python base64 decode incorrect padding error solution, base64padding

Source: Internet
Author: User

Python base64 decode incorrect padding error solution, base64padding

The following error is returned when the base64.decodestring method of python performs base64 decoding:
Copy codeThe Code is as follows:
Traceback (most recent call last ):
File "/export/www/outofmemory.cn/controllers/user.py", line 136, in decryptPassword
EncryptPwd = base64.b64decode (encryptPwd)
File "/usr/lib/python2.7/base64.py", line 76, in b64decode
Raise TypeError (msg)
TypeError: Incorrect padding

This is also a pitfall of python. The solution to this problem is very simple. You can complete the equal sign for the string decoded by base64, as shown in the following code:
Copy codeThe Code is as follows:
Def decode_base64 (data ):
"Decode base64, padding being optional.

: Param data: Base64 data as an ASCII byte string
: Returns: The decoded byte string.

"""
Missing_padding = 4-len (data) % 4
If missing_padding:
Data + = B '=' * missing_padding
Return base64.decodestring (data)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.