码迷,mamicode.com
首页 > Windows程序 > 详细

django运行报错TypeError: object supporting the buffer API required

时间:2019-11-24 11:40:05      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:mamicode   password   typeerror   err   django   pass   运行   数据   error:   

运行django项目报错:TypeError: object supporting the buffer API required

技术图片

 

 解决方案:

技术图片

 

 将settings.py中数据库的密码改成字符串格式

源码:

def scramble_caching_sha2(password, nonce):
    # (bytes, bytes) -> bytes
    """Scramble algorithm used in cached_sha2_password fast path.

    XOR(SHA256(password), SHA256(SHA256(SHA256(password)), nonce))
    """
    if not password:
        return b‘‘

    p1 = hashlib.sha256(password).digest()

技术图片

 

 

要求密码需为字符串形式

django运行报错TypeError: object supporting the buffer API required

标签:mamicode   password   typeerror   err   django   pass   运行   数据   error:   

原文地址:https://www.cnblogs.com/pfeiliu/p/11921534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!