TypeError: Unicode-objects must be encoded before hashing
这句话的意思: 在hash之前 对象必须是编码后的。
encode()方法编码后的数据类型为 bytes 类型
解决方法:
hashlib.new('md5',b'xst').hexdigest()
还有一种是
hashlib.new('md5','xst'.encode()).hexdigest()
TypeError: Unicode-objects must be encoded before hashing
这句话的意思: 在hash之前 对象必须是编码后的。
encode()方法编码后的数据类型为 bytes 类型
hashlib.new('md5',b'xst').hexdigest()
还有一种是
hashlib.new('md5','xst'.encode()).hexdigest()