HMAC python与HMAC php不同

时间:2019-03-14 17:44:11

标签: php python hash hmac

我正在将我的流明代码迁移到python,对于hmac函数,我有以下方法:

PHP

$hash = hash_hmac(
  'sha256',
  'user@email.com', 
  'message'
);

Python 3

import hmac
import hashlib

user_hash = hmac.new(b'user@email.com', b'message', hashlib.sha256).hexdigest()

问题是两个结果都不匹配:

PHP输出

413777aac2561ca3acd6d49c95df9ecae4c6e2f6bc9adc40bbb77650d7b4c459

Python输出

42879f50e909799d93b835a81a65c03cf78a56ef1c038ac75c8ab3f211d083ea

我想问题是python 3如何解释字符串,但我无法弄清楚。有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

HMAC的参数顺序有所不同:

>>> hmac.new(b'user@email.com', b'message', hashlib.sha256).hexdigest()
'42879f50e909799d93b835a81a65c03cf78a56ef1c038ac75c8ab3f211d083ea'

>>> hmac.new(b'message', b'user@email.com', hashlib.sha256).hexdigest()
'413777aac2561ca3acd6d49c95df9ecae4c6e2f6bc9adc40bbb77650d7b4c459'

hmac.new中,第一个参数是key(哈希的开始键),第二个参数是msg(要摘要的消息)。