Searched refs:KeyObject (Results 1 – 10 of 10) sorted by relevance
/third_party/node/lib/internal/crypto/ |
D | keys.js | 52 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
|
D | diffiehellman.js | 22 const { KeyObject } = require('internal/crypto/keys'); 268 if (!(privateKey instanceof KeyObject)) 271 if (!(publicKey instanceof KeyObject))
|
/third_party/node/lib/ |
D | crypto.js | 73 KeyObject, 209 KeyObject, property
|
/third_party/node/doc/api/ |
D | crypto.md | 1218 ## 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 …]
|
D | worker_threads.md | 438 description: Added `KeyObject` to the list of cloneable types. 462 * {KeyObject}s,
|
/third_party/node/test/parallel/ |
D | test-crypto-key-objects.js | 16 KeyObject, 49 assert.throws(() => new KeyObject(TYPE), { 58 assert.throws(() => new KeyObject('secret', ''), {
|
/third_party/node/tools/doc/ |
D | type-parser.mjs | 69 'KeyObject': 'crypto.html#crypto_class_keyobject', property
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V12.md | 1767 * [[`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) [#…
|
D | CHANGELOG_V14.md | 2519 * [[`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…
|
D | CHANGELOG_V11.md | 269 …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…
|