Lines Matching refs:hash
115 for (const hash in hmac)
116 testHmac(hash, key, data, hmac[hash]);
267 for (const hash in rfc4231[i].hmac) {
268 const str = crypto.createHmac(hash, rfc4231[i].key);
271 let actual = crypto.createHmac(hash, rfc4231[i].key)
278 const expected = rfc4231[i].hmac[hash];
282 `Test HMAC-${hash} rfc 4231 case ${i + 1}: ${actual} must be ${expected}`
287 `Should get same result from stream (hash: ${hash} and case: ${i + 1})` +