Python base64 decode incorrect padding error resolution

Source: Internet
Author: User
Python's Base64.decodestring method does base64 decoding the Times wrong:

The code is as follows:


Traceback (most recent):
File "/export/www/outofmemory.cn/controllers/user.py", line 136, in Decryptpassword
Encryptpwd = Base64.b64decode (encryptpwd)
File "/usr/lib/python2.7/base64.py", line +, in B64decode
Raise TypeError (MSG)
Typeerror:incorrect padding


This is a python pit, the solution to this problem is very simple, the Base64 decoding of the string is equal to the equivalent, the following code:

The code is as follows:


def decode_base64 (data):
"" "Decode base64, padding being optional.

:p Aram 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.