Python中的hmac模块提供了基于密钥的消息认证码(HMAC)算法,用于验证消息的完整性和身份认证。
它可以用于保护敏感数据,例如密码、API密钥等。
以下是hmac模块中一些常见函数的用法:
在实际应用中,您可能需要根据具体需求调整密钥、哈希算法等参数。
- hmac.new()
创建一个新的HMAC对象,需要提供密钥和消息。
import hmac
import hashlibkey = b"my_secret_key"
message = b"Hello, World!"hmac_obj = hmac.new(key, message, hashlib.sha256)
digest = hmac_obj.hexdigest()
print("HMAC:", digest)
- hmac.compare_digest()
比较两个HMAC对象生成的摘要是否相同。
import hmac
import hashlibkey = b"my_secret_key"
message1 = b"Hello, World!"
message2 = b"Hello, World!"hmac_obj1 = hmac.new(key, message1, hashlib.sha256)
hmac_obj2 = hmac.new(key, message2, hashlib.sha256)result = hmac.compare_digest(hmac_obj1.hexdigest(), hmac_obj2.hexdigest())
print("HMACs are equal:", result)
- hmac.compare_hmac()
比较两个HMAC对象是否相同。
import hmac
import hashlibkey = b"my_secret_key"
message1 = b"Hello, World!"
message2 = b"Hello, World!"hmac_obj1 = hmac.new(key, message1, hashlib.sha256)
hmac_obj2 = hmac.new(key, message2, hashlib.sha256)result = hmac.compare_hmac(hmac_obj1, hmac_obj2)
print("HMACs are equal:", result)