Searched refs:Hmac (Results 1 - 8 of 8) sorted by relevance
/third_party/node/src/crypto/ |
H A D | crypto_hmac.cc | 31 Hmac::Hmac(Environment* env, Local<Object> wrap) in Hmac() function in node::crypto::Hmac 37 void Hmac::MemoryInfo(MemoryTracker* tracker) const { in MemoryInfo() 41 void Hmac::Initialize(Environment* env, Local<Object> target) { in Initialize() 46 Hmac::kInternalFieldCount); in Initialize() 53 SetConstructorFunction(env->context(), target, "Hmac", t); in Initialize() 58 void Hmac::RegisterExternalReferences(ExternalReferenceRegistry* registry) { in RegisterExternalReferences() 66 void Hmac::New(const FunctionCallbackInfo<Value>& args) { in New() 68 new Hmac(env, args.This()); in New() 71 void Hmac [all...] |
H A D | crypto_hmac.h | 16 class Hmac : public BaseObject { class 22 SET_MEMORY_INFO_NAME(Hmac) 23 SET_SELF_SIZE(Hmac) 34 Hmac(Environment* env, v8::Local<v8::Object> wrap);
|
/third_party/node/lib/internal/crypto/ |
H A D | hash.js | 12 Hmac: _Hmac, 129 function Hmac(hmac, key, options) { class 130 if (!(this instanceof Hmac)) 131 return new Hmac(hmac, key, options); 143 ObjectSetPrototypeOf(Hmac.prototype, LazyTransform.prototype); 144 ObjectSetPrototypeOf(Hmac, LazyTransform); 146 Hmac.prototype.update = Hash.prototype.update; 148 Hmac.prototype.digest = function digest(outputEncoding) { 163 Hmac.prototype._flush = Hash.prototype._flush; 164 Hmac [all...] |
/third_party/node/test/parallel/ |
H A D | test-crypto-hmac.js | 10 const Hmac = crypto.Hmac; 11 const instance = crypto.Hmac('sha256', 'Node'); 12 assert(instance instanceof Hmac, 'Hmac is expected to return a new instance' + 49 // If the key is a Buffer, test Hmac with a key object as well.
|
/third_party/node/lib/ |
H A D | crypto.js | 108 Hmac, 165 return new Hmac(hmac, key, options); 236 Hmac,
|
/third_party/node/src/ |
H A D | node_crypto.cc | 47 V(Hmac) \
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | crypto_wolfssl.c | 164 Hmac hmac; in wolfssl_hmac_vector() 877 Hmac hmac;
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | crypto_wolfssl.c | 164 Hmac hmac; in wolfssl_hmac_vector() 881 Hmac hmac;
|
Completed in 10 milliseconds