hmac 可以代替hashlib进行直接把密钥和字符串进行加密,直接生成bytes格式进行网络传输
使用方法
import hmac import os h=hmac.new(b'qwer',os.urandom(16)) s=h.digest() print(s) 得:b'\xc0\xff\x8d\xd4\\(W\xba\xd9\n\xcfy\x0eR\xdb0'