Unicode-objects must be encoded before hashing 错误解决办法
提交注册用户数据后出来这个,错误原因是update()必须指定要加密的字符串的字符编码
#encryption
s1 = sha1()
s1.update(upwd.encode("utf8"))
upwd3 = s1.hexdigest()
逆风的方向更适合飞翔,不怕千万人阻挡,只怕自己投降!
提交注册用户数据后出来这个,错误原因是update()必须指定要加密的字符串的字符编码
#encryption
s1 = sha1()
s1.update(upwd.encode("utf8"))
upwd3 = s1.hexdigest()