Home
last modified time | relevance | path

Searched refs:getCipherInfo (Results 1 – 6 of 6) sorted by relevance

/third_party/node/test/parallel/
Dtest-crypto-getcipherinfo.js9 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 …]
Dtest-crypto.js126 const { ivLength, keyLength, mode } = crypto.getCipherInfo(algo);
/third_party/node/lib/internal/crypto/
Dcipher.js15 getCipherInfo: _getCipherInfo,
302 function getCipherInfo(nameOrNid, options) { function
338 getCipherInfo, property
/third_party/node/lib/
Dcrypto.js98 getCipherInfo,
196 getCipherInfo, property
/third_party/node/doc/api/
Dcrypto.md4055 ### `crypto.getCipherInfo(nameOrNid[, options])`
4080 the `crypto.getCipherInfo()` method will return the default values for these
/third_party/node/doc/changelogs/
DCHANGELOG_V15.md2002 …/nodejs/node/commit/095be6a01f)] - **(SEMVER-MINOR)** **crypto**: add getCipherInfo method (James …