Searched refs:getCipherInfo (Results 1 – 6 of 6) sorted by relevance
/third_party/node/test/parallel/ |
D | test-crypto-getcipherinfo.js | 9 getCipherInfo 16 assert.strictEqual(getCipherInfo(-1), undefined); 17 assert.strictEqual(getCipherInfo('cipher that does not exist'), undefined); 20 const info = getCipherInfo(cipher); 22 const info2 = getCipherInfo(info.nid); 26 const info = getCipherInfo('aes-128-cbc'); 35 assert.throws(() => getCipherInfo(arg), { 42 () => getCipherInfo('aes-192-cbc', options), { 49 () => getCipherInfo('aes-192-cbc', { keyLength: len }), { 53 () => getCipherInfo('aes-192-cbc', { ivLength: len }), { [all …]
|
D | test-crypto.js | 126 const { ivLength, keyLength, mode } = crypto.getCipherInfo(algo);
|
/third_party/node/lib/internal/crypto/ |
D | cipher.js | 15 getCipherInfo: _getCipherInfo, 302 function getCipherInfo(nameOrNid, options) { function 338 getCipherInfo, property
|
/third_party/node/lib/ |
D | crypto.js | 98 getCipherInfo, 196 getCipherInfo, property
|
/third_party/node/doc/api/ |
D | crypto.md | 4055 ### `crypto.getCipherInfo(nameOrNid[, options])` 4080 the `crypto.getCipherInfo()` method will return the default values for these
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V15.md | 2002 …/nodejs/node/commit/095be6a01f)] - **(SEMVER-MINOR)** **crypto**: add getCipherInfo method (James …
|