key 是秘钥 类型为 str
msg 要加密的文件 str
digestmod 要加密的方式
key 是秘钥 类型为 byte
msg 要加密的文件 byte
import hmac sign = hmac.new(key,msg,digestmod).digest()