微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

问题实现 HMAC-SHA1 给出错误的哈希?

如何解决问题实现 HMAC-SHA1 给出错误的哈希?

我正在尝试在 python 中实现我自己的 HMAC-SHA1 函数,但它似乎总是在最后给我错误的校验和,我不明白为什么

""" An Hmac Implementation of SHA-1 """
from Crypto.Hash import SHA1

hasher = SHA1.new()

password = b"test"
message = b"NAME"

pad_length = 64 - len(password)
key = bytes(pad_length) + password

ipad_num = "01011100" * 64
opad_num = "00110110" * 64

ipad = int.from_bytes(key,byteorder="big") ^ int(ipad_num,base=2)
opad = int.from_bytes(key,byteorder="big") ^ int(opad_num,base=2)

ipad = int.to_bytes(ipad,length=64,byteorder="big")
opad = int.to_bytes(opad,byteorder="big")

hasher.update(ipad + message)
inner_hash = hasher.digest()
print("inner hash {}".format(inner_hash.hex()))

hasher = SHA1.new()
hasher.update(opad + inner_hash)
print("final hash {}".format(hasher.hexdigest()))

应该给我这个校验和: 对于消息 = NAME 密码 = test

3e0f1cc6c2d787afe49345986212f60d3d4d300d

但它给了我这个校验和

7d6b1ba137a44ee9e083d8e3ba5a84fd739751f4

解决方法

除非您正在学习密码学,否则我建议您使用 python 提供的 hmac 库。

这是固定代码:

""" An Hmac Implementation of SHA-1 """
from Crypto.Hash import SHA1

hasher = SHA1.new()

password = b"test"
message = b"NAME"

pad_length = 64 - len(password) # TODO: support longer key
key = password + bytes(pad_length) # padding should be on the right

ipad_num = "00110110" * 64 # ipad should be 0x36
opad_num = "01011100" * 64 # opad should be 0x5c

ipad = int.from_bytes(key,byteorder="big") ^ int(ipad_num,base=2)
opad = int.from_bytes(key,byteorder="big") ^ int(opad_num,base=2)

ipad = int.to_bytes(ipad,length=64,byteorder="big")
opad = int.to_bytes(opad,byteorder="big")

hasher.update(ipad + message)
inner_hash = hasher.digest()
print("inner hash {}".format(inner_hash.hex()))

hasher = SHA1.new()
hasher.update(opad + inner_hash)
print("final hash {}".format(hasher.hexdigest()))

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。