Home
last modified time | relevance | path

Searched refs:getCiphers (Results 1 – 13 of 13) sorted by relevance

/third_party/node/test/parallel/
Dtest-crypto.js121 const cryptoCiphers = crypto.getCiphers();
122 assert(crypto.getCiphers().includes('aes-128-cbc'));
139 const tlsCiphers = tls.getCiphers();
140 assert(tls.getCiphers().includes('aes256-sha'));
141 assert(tls.getCiphers().includes('tls_aes_128_ccm_8_sha256'));
175 testImmutability(crypto.getCiphers);
176 testImmutability(tls.getCiphers);
Dtest-crypto-getcipherinfo.js8 getCiphers,
14 const ciphers = getCiphers();
Dtest-crypto-authenticated.js50 const ciphers = crypto.getCiphers();
/third_party/node/test/addons/openssl-providers/
Dproviders.cjs10 const { createHash, getCiphers, getHashes } = require('node:crypto');
52 assertArrayIncludes(getCiphers(), cipher, 'Available ciphers');
66 assertArrayDoesNotInclude(getCiphers(), cipher, 'Available ciphers');
/third_party/node/lib/internal/crypto/
Dutil.js27 getCiphers: _getCiphers,
100 const getCiphers = cachedResult(() => filterDuplicateStrings(_getCiphers())); constant
560 getCiphers, property
/third_party/node/lib/
Dcrypto.js114 getCiphers,
195 getCiphers, property
Dtls.js100 exports.getCiphers = internalUtil.cachedResult(
/third_party/node/benchmark/crypto/
Dget-ciphers.js11 const method = require(v).getCiphers;
/third_party/node/doc/api/
Dtls.md1876 ciphers can be obtained via [`tls.getCiphers()`][]. Cipher names must be
2185 ## `tls.getCiphers()`
2204 console.log(tls.getCiphers()); // ['aes128-gcm-sha256', 'aes128-sha', ...]
2328 [`tls.getCiphers()`]: #tlsgetciphers
Dcrypto.md4085 ### `crypto.getCiphers()`
4096 getCiphers,
4099 console.log(getCiphers()); // ['aes-128-cbc', 'aes-128-ccm', ...]
4104 getCiphers,
4107 console.log(getCiphers()); // ['aes-128-cbc', 'aes-128-ccm', ...]
/third_party/node/doc/changelogs/
DCHANGELOG_V010.md872 * crypto: make getCiphers() return non-SSL ciphers (Ben Noordhuis)
DCHANGELOG_ARCHIVE.md858 * crypto: add getHashes() and getCiphers() (Ben Noordhuis)
DCHANGELOG_V6.md4247 …it/2c7804ad9e)] - **crypto,tls**: perf improvements for crypto and tls getCiphers (James M Snell) …