Home
last modified time | relevance | path

Searched refs:Hmac (Results 1 – 15 of 15) sorted by relevance

/third_party/node/src/crypto/
Dcrypto_hmac.cc31 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 …]
Dcrypto_hmac.h16 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/
Dhash.js12 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/
Dtest-crypto-hmac.js10 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/
Dcrypto.js108 Hmac,
165 return new Hmac(hmac, key, options);
236 Hmac, property
/third_party/node/src/
Dnode_crypto.cc47 V(Hmac) \
/third_party/node/tools/doc/
Dtype-parser.mjs79 'Hmac': 'crypto.html#class-hmac', property
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dcrypto_wolfssl.c164 Hmac hmac; in wolfssl_hmac_vector()
881 Hmac hmac;
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Dcrypto_wolfssl.c164 Hmac hmac; in wolfssl_hmac_vector()
877 Hmac hmac;
/third_party/node/doc/api/
Dcrypto.md1740 ## 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`.
Ddeprecations.md2329 `DiffieHellmanGroup`, `ECDH`, `Hash`, `Hmac`, `Sign`, and `Verify` classes.
/third_party/node/doc/changelogs/
DCHANGELOG_ARCHIVE.md3354 * Buffer support for Cipher, Decipher, Hmac, Sign and Verify
DCHANGELOG_V9.md1873 …com/nodejs/node/commit/5c24fc32c9)] - **(SEMVER-MINOR)** **crypto**: Make Hmac 1.1.0-compatible (D…
DCHANGELOG_V8.md1325 …com/nodejs/node/commit/5e9e4e5bf9)] - **(SEMVER-MINOR)** **crypto**: Make Hmac 1.1.0-compatible (D…
DCHANGELOG_V10.md2766 * \[[`916a1d59f0`](https://github.com/nodejs/node/commit/916a1d59f0)] - **crypto**: simplify Hmac::…