import hmac message=b‘hello,world‘ key=b‘secret‘ h=hmac.new(key,message,digestmod=‘Md5‘) h.hexdigest() ‘5848a9dba4e9a6168887b0ee6cd03b69‘
2023-12-24 16:37:22
import hmac message=b‘hello,world‘ key=b‘secret‘ h=hmac.new(key,message,digestmod=‘Md5‘) h.hexdigest() ‘5848a9dba4e9a6168887b0ee6cd03b69‘
下一篇:Linux基础学习01