Python base64 decode incorrect padding error resolution _python

Source: Internet
Author: User
Tags base64 mongodb postgresql redis


Python's Base64.decodestring method does base64 decoding times wrong:


 code 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-only, in B64decode 
Raise TypeError (MSG) 
Typeerror:incorrect padding 


This is a python pit. The solution to this problem is simple, and the Base64 decoding string can be filled with an equal sign, the following code:
 code 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)




Alibaba Cloud Hot Products

Elastic Compute Service (ECS) Dedicated Host (DDH) ApsaraDB RDS for MySQL (RDS) ApsaraDB for PolarDB(PolarDB) AnalyticDB for PostgreSQL (ADB for PG)
AnalyticDB for MySQL(ADB for MySQL) Data Transmission Service (DTS) Server Load Balancer (SLB) Global Accelerator (GA) Cloud Enterprise Network (CEN)
Object Storage Service (OSS) Content Delivery Network (CDN) Short Message Service (SMS) Container Service for Kubernetes (ACK) Data Lake Analytics (DLA)

ApsaraDB for Redis (Redis)

ApsaraDB for MongoDB (MongoDB) NAT Gateway VPN Gateway Cloud Firewall
Anti-DDoS Web Application Firewall (WAF) Log Service DataWorks MaxCompute
Elastic MapReduce (EMR) Elasticsearch

Alibaba Cloud Free Trail

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.