Searched refs:Hmac (Results 1 – 14 of 14) sorted by relevance
/third_party/node/lib/internal/crypto/ |
D | hash.js | 10 Hmac: _Hmac 107 function Hmac(hmac, key, options) { class 108 if (!(this instanceof Hmac)) 109 return new Hmac(hmac, key, options); 120 ObjectSetPrototypeOf(Hmac.prototype, LazyTransform.prototype); 121 ObjectSetPrototypeOf(Hmac, LazyTransform); 123 Hmac.prototype.update = Hash.prototype.update; 125 Hmac.prototype.digest = function digest(outputEncoding) { 140 Hmac.prototype._flush = Hash.prototype._flush; 141 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 | 99 Hmac 146 return new Hmac(hmac, key, options); 208 Hmac, property
|
/third_party/node/src/ |
D | node_crypto.h | 606 class Hmac : public BaseObject { 612 SET_MEMORY_INFO_NAME(Hmac) 613 SET_SELF_SIZE(Hmac) 624 Hmac(Environment* env, v8::Local<v8::Object> wrap);
|
D | node_crypto.cc | 4169 Hmac::Hmac(Environment* env, Local<Object> wrap) in Hmac() function in node::crypto::Hmac 4175 void Hmac::Initialize(Environment* env, Local<Object> target) { in Initialize() 4179 Hmac::kInternalFieldCount); in Initialize() 4192 void Hmac::New(const FunctionCallbackInfo<Value>& args) { in New() 4194 new Hmac(env, args.This()); in New() 4198 void Hmac::HmacInit(const char* hash_type, const char* key, int key_len) { in HmacInit() 4216 void Hmac::HmacInit(const FunctionCallbackInfo<Value>& args) { in HmacInit() 4217 Hmac* hmac; in HmacInit() 4227 bool Hmac::HmacUpdate(const char* data, int len) { in HmacUpdate() 4237 void Hmac::HmacUpdate(const FunctionCallbackInfo<Value>& args) { in HmacUpdate() [all …]
|
/third_party/node/tools/doc/ |
D | type-parser.mjs | 68 'Hmac': 'crypto.html#crypto_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 | 1121 ## Class: `Hmac` 1128 The `Hmac` class is a utility for creating cryptographic HMAC digests. It can 1136 The [`crypto.createHmac()`][] method is used to create `Hmac` instances. `Hmac` 1139 Example: Using `Hmac` objects as streams: 1160 Example: Using `Hmac` and piped streams: 1195 The `Hmac` object can not be used again after `hmac.digest()` has been 1210 Updates the `Hmac` content with the given `data`, the encoding of which 1979 * Returns: {Hmac} 1981 Creates and returns an `Hmac` object that uses the given `algorithm` and `key`. 2079 encryption or `Hmac`.
|
D | deprecations.md | 2180 `DiffieHellmanGroup`, `ECDH`, `Hash`, `Hmac`, `Sign`, and `Verify` classes.
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_ARCHIVE.md | 2838 * Buffer support for Cipher, Decipher, Hmac, Sign and Verify
|
D | CHANGELOG_V9.md | 1846 …com/nodejs/node/commit/5c24fc32c9)] - **(SEMVER-MINOR)** **crypto**: Make Hmac 1.1.0-compatible (D…
|
D | CHANGELOG_V10.md | 2497 * [[`916a1d59f0`](https://github.com/nodejs/node/commit/916a1d59f0)] - **crypto**: simplify Hmac::H…
|
D | CHANGELOG_V8.md | 1307 …com/nodejs/node/commit/5e9e4e5bf9)] - **(SEMVER-MINOR)** **crypto**: Make Hmac 1.1.0-compatible (D…
|