标签:知识 import digest val byte 对象 bsp hash 一个
方法:
b‘hello‘ 与 ‘hello’.encode(‘utf-8‘) 作用相同
import hashlib md = hashlib.md5() # 生成一个造密文的对象 val = ‘啦啦啦啦‘ # 加盐处理 md.update(val.encode(‘utf-8‘)) # md.update(‘hello‘.encode(‘utf-8‘)) # 将字符串转为二进制形式 md.update(b‘hello‘) # Bytes类型也就是二进制形式, b‘hello‘ 与 ‘hello‘.encode(‘utf-8‘) 作用是一样的 res = md.hexdigest() print(res)
标签:知识 import digest val byte 对象 bsp hash 一个
原文地址:https://www.cnblogs.com/qinsungui921112/p/11322442.html