根据我使用HMAC SHA256阅读的各种文档,我理解:
H(K XOR opad,H(K XOR ipad,text))其中H在我的情况下是SHA256。
但是,SHA256输入只有一个参数,即一个消息。 而H(K,text)有两个输入。 那么如何计算H(k,text)?
我应该首先使用k对文本进行编码,然后使用H(encoded_text),其中encoded_text将用作消息吗?
谢谢
答案 0 :(得分:14)
HMAC(K,m)= H((K⊕opad)∥H((K⊕ipad)∥m))。
您的结果将是:
H(o_key_pad || H(i_key_pad || TEXT))
你可以在这里找到一个好的阅读: http://timdinh.nl/index.php/hmac/
还有以下几乎看起来像我的伪代码:
function hmac (key, message)
opad = [0x5c * blocksize] // Where blocksize is that of the underlying hash function
ipad = [0x36 * blocksize]
if (length(key) > blocksize) then
key = hash(key) // Where 'hash' is the underlying hash function
end if
for i from 0 to length(key) - 1 step 1
ipad[i] = ipad[i] XOR key[i]
opad[i] = opad[i] XOR key[i]
end for
return hash(opad || hash(ipad || message)) // Where || is concatenation
end function