Searched refs:Hmac (Results 1 – 15 of 15) sorted by relevance
/third_party/node/src/crypto/ |
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() 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::HmacInit(const char* hash_type, const char* key, int key_len) { in HmacInit() 88 void Hmac::HmacInit(const FunctionCallbackInfo<Value>& args) { in HmacInit() 89 Hmac* hmac; in HmacInit() [all …]
|
D | crypto_hmac.h | 16 class Hmac : public BaseObject { 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/ |
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.prototype._transform = Hash.prototype._transform; [all …]
|
/third_party/node/test/parallel/ |
D | test-crypto-hmac.js | 10 const Hmac = crypto.Hmac; constant 11 const instance = crypto.Hmac('sha256', 'Node'); 12 assert(instance instanceof Hmac, 'Hmac is expected to return a new instance' +
|
/third_party/node/lib/ |
D | crypto.js | 108 Hmac, 165 return new Hmac(hmac, key, options); 236 Hmac, property
|
/third_party/node/src/ |
D | node_crypto.cc | 47 V(Hmac) \
|
/third_party/node/tools/doc/ |
D | type-parser.mjs | 79 'Hmac': 'crypto.html#class-hmac', property
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
D | crypto_wolfssl.c | 164 Hmac hmac; in wolfssl_hmac_vector() 881 Hmac hmac;
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
D | crypto_wolfssl.c | 164 Hmac hmac; in wolfssl_hmac_vector() 877 Hmac hmac;
|
/third_party/node/doc/api/ |
D | crypto.md | 1740 ## Class: `Hmac` 1748 The `Hmac` class is a utility for creating cryptographic HMAC digests. It can 1756 The [`crypto.createHmac()`][] method is used to create `Hmac` instances. `Hmac` 1759 Example: Using `Hmac` objects as streams: 1805 Example: Using `Hmac` and piped streams: 1876 The `Hmac` object can not be used again after `hmac.digest()` has been 1892 Updates the `Hmac` content with the given `data`, the encoding of which 3402 * Returns: {Hmac} 3404 Creates and returns an `Hmac` object that uses the given `algorithm` and `key`. 3579 encryption or `Hmac`.
|
D | deprecations.md | 2329 `DiffieHellmanGroup`, `ECDH`, `Hash`, `Hmac`, `Sign`, and `Verify` classes.
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_ARCHIVE.md | 3354 * Buffer support for Cipher, Decipher, Hmac, Sign and Verify
|
D | CHANGELOG_V9.md | 1873 …com/nodejs/node/commit/5c24fc32c9)] - **(SEMVER-MINOR)** **crypto**: Make Hmac 1.1.0-compatible (D…
|
D | CHANGELOG_V8.md | 1325 …com/nodejs/node/commit/5e9e4e5bf9)] - **(SEMVER-MINOR)** **crypto**: Make Hmac 1.1.0-compatible (D…
|
D | CHANGELOG_V10.md | 2766 * \[[`916a1d59f0`](https://github.com/nodejs/node/commit/916a1d59f0)] - **crypto**: simplify Hmac::…
|