Searched refs:createHmac (Results 1 – 14 of 14) sorted by relevance
17 () => crypto.createHmac(null),26 () => crypto.createHmac('sha256', 'key').digest({35 () => crypto.createHmac('sha1', null),58 const hmac = crypto.createHmac(algo, keyWrapper(key));270 const str = crypto.createHmac(hash, rfc4231[i].key);273 let actual = crypto.createHmac(hash, rfc4231[i].key)412 crypto.createHmac('sha256', 'w00t').digest('ucs2'),413 crypto.createHmac('sha256', 'w00t').digest().toString('ucs2'));421 const h = crypto.createHmac('sha1', 'key').update('data');426 const h = crypto.createHmac('sha1', 'key').update('data');[all …]
66 const hmacHash = crypto.createHmac('sha1', 'Node')222 let result = crypto.createHmac(hash, testCase.key)350 crypto.createHmac('md5', testCase.key)359 crypto.createHmac('sha1', testCase.key)
16 const hmac = () => crypto.createHmac('sha256', key);
199 () => crypto.createHmac('sha256', 'a secret').update('0', 'hex'),
62 var hmac = crypto.createHmac(hashAlg, secret);72 var h1 = crypto.createHmac(hashAlg, secret);75 var h2 = crypto.createHmac(hashAlg, secret);
73 this.rs_signer = crypto.createHmac(alg[1].toUpperCase(), options.key);355 var hmac = crypto.createHmac(alg[1].toUpperCase(), options.key);
154 let hmac = crypto.createHmac(algo, secret);159 hmac = crypto.createHmac(algo, secret);169 hmac = crypto.createHmac(algo, secret);
145 function createHmac(hmac, key, options) { function165 createHmac, property
72 return crypto.createHmac('sha1', options.secret).update(options.message).digest('base64')
41 var hmac = crypto.createHmac(credentials.algorithm, credentials.key).update(normalized)
4 return crypto.createHmac(algorithm, key).update(body).digest('base64')
11 return crypto.createHmac('sha256', key).update(string, 'utf8').digest(encoding)
271 …hash_function: (baseString, key) => crypto.createHmac('sha1', key).update(baseString).digest('base…
18 const hash = crypto.createHmac('sha256', secret)1136 The [`crypto.createHmac()`][] method is used to create `Hmac` instances. `Hmac`1143 const hmac = crypto.createHmac('sha256', 'a secret');1165 const hmac = crypto.createHmac('sha256', 'a secret');1175 const hmac = crypto.createHmac('sha256', 'a secret');1967 ### `crypto.createHmac(algorithm, key[, options])`2000 const hmac = crypto.createHmac('sha256', 'a secret');3623 [`crypto.createHmac()`]: #crypto_crypto_createhmac_algorithm_key_options