提交注册用户数据后出来这个,错误原因是update()必须指定要加密的字符串的字符编码

 

 

#encryption
s1 = sha1()
s1.update(upwd.encode("utf8"))
upwd3 = s1.hexdigest()

 

相关文章: