Home
last modified time | relevance | path

Searched refs:KeyObject (Results 1 – 10 of 10) sorted by relevance

/third_party/node/lib/internal/crypto/
Dkeys.js52 0: KeyObject,
58 class KeyObject extends NativeKeyObject { class
82 class SecretKeyObject extends KeyObject {
98 class AsymmetricKeyObject extends KeyObject {
135 return [KeyObject, SecretKeyObject, PublicKeyObject, PrivateKeyObject];
356 return key instanceof KeyObject;
364 KeyObject, property
Ddiffiehellman.js22 const { KeyObject } = require('internal/crypto/keys');
268 if (!(privateKey instanceof KeyObject))
271 if (!(publicKey instanceof KeyObject))
/third_party/node/lib/
Dcrypto.js73 KeyObject,
209 KeyObject, property
/third_party/node/doc/api/
Dcrypto.md1218 ## Class: `KeyObject`
1231 Node.js uses a `KeyObject` class to represent a symmetric or asymmetric key,
1234 [`crypto.createPrivateKey()`][] methods are used to create `KeyObject`
1235 instances. `KeyObject` objects are not to be created directly using the `new`
1238 Most applications should consider using the new `KeyObject` API instead of
1241 `KeyObject` instances can be passed to other threads via [`postMessage()`][].
1242 The receiver obtains a cloned `KeyObject`, and the `KeyObject` does not need to
1257 description: This property now returns `undefined` for KeyObject
1282 This property is `undefined` for unrecognized `KeyObject` types and symmetric
1345 Depending on the type of this `KeyObject`, this property is either
[all …]
Dworker_threads.md438 description: Added `KeyObject` to the list of cloneable types.
462 * {KeyObject}s,
/third_party/node/test/parallel/
Dtest-crypto-key-objects.js16 KeyObject,
49 assert.throws(() => new KeyObject(TYPE), {
58 assert.throws(() => new KeyObject('secret', ''), {
/third_party/node/tools/doc/
Dtype-parser.mjs69 'KeyObject': 'crypto.html#crypto_class_keyobject', property
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md1767 * [[`d86f10cf0b`](https://github.com/nodejs/node/commit/d86f10cf0b)] - **doc**: add KeyObject to ty…
3000 * [[`9220a68a76`](https://github.com/nodejs/node/commit/9220a68a76)] - **crypto**: fix KeyObject ha…
3748 …om/nodejs/node/commit/4895927a0a)] - **(SEMVER-MINOR)** **crypto**: add KeyObject.asymmetricKeySiz…
3810 …hub.com/nodejs/node/commit/6f77af541e)] - ***Revert*** "**crypto**: add KeyObject.asymmetricKeySiz…
3811 …com/nodejs/node/commit/247c14c040)] - **crypto**: fix EdDSA support for KeyObject (Brian White) [#…
DCHANGELOG_V14.md2519 * [[`a01154e3fd`](https://github.com/nodejs/node/commit/a01154e3fd)] - **crypto**: fix KeyObject ga…
2520 …hub.com/nodejs/node/commit/1f15e34dc8)] - **crypto**: set env values in KeyObject Deserialize meth…
2769 …tps://github.com/nodejs/node/commit/178a740caf)] - **crypto**: simplify KeyObject constructor (Ric…
DCHANGELOG_V11.md269 …nodejs/node/commit/74c6f57aed)] - **(SEMVER-MINOR)** **crypto**: expose KeyObject class (Filip Sko…
1136 …b.com/nodejs/node/commit/8ee4810029)] - **src**: pass along errors from KeyObject instantiation (A…