2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

hmac(key, message)

This commit is contained in:
Francis Dupont 2014-02-25 00:35:31 +01:00
parent 146a9eef33
commit 1b0d803a75

View File

@ -69,11 +69,11 @@ AES
HMAC SHA1
hash = trunc(hmacsha1(client|nonce|when|address, secret), 8);
hash = trunc(hmacsha1(secret, client|nonce|when|address), 8);
HMAC SHA256
hash = trunc(hmacsha256(client|nonce|when|address, secret), 8);
hash = trunc(hmacsha256(secret, client|nonce|when|address), 8);
[1]
INTERNET-DRAFT Donald Eastlake