Home
last modified time | relevance | path

Searched refs:getCurves (Results 1 – 11 of 11) sorted by relevance

/third_party/node/test/parallel/
Dtest-crypto.js161 assert.notStrictEqual(crypto.getCurves().length, 0);
162 assert(crypto.getCurves().includes('secp384r1'));
163 assert(!crypto.getCurves().includes('SECP384R1'));
164 validateList(crypto.getCurves());
178 testImmutability(crypto.getCurves);
Dtest-crypto-keygen-missing-oid.js11 getCurves,
19 if (!getCurves().includes(namedCurve))
Dtest-crypto-ecdh-convert-key.js8 const { ECDH, createSign, getCurves } = require('crypto');
43 if (getCurves().includes('secp256k1')) {
Dtest-crypto-dh-stateless.js219 const not256k1 = crypto.getCurves().find((c) => /^sec.*(224|384|512)/.test(c));
Dtest-crypto-dh-curves.js22 const availableCurves = new Set(crypto.getCurves());
Dtest-crypto-key-objects.js22 getCurves,
802 const namedCurve = getCurves().find((curve) => !supported.includes(curve));
/third_party/node/lib/internal/crypto/
Dutil.js28 getCurves: _getCurves,
102 const getCurves = cachedResult(() => filterDuplicateStrings(_getCurves())); constant
561 getCurves, property
/third_party/node/lib/
Dcrypto.js115 getCurves,
197 getCurves, property
/third_party/node/doc/api/
Dcrypto.md1288 Use [`crypto.getCurves()`][] to obtain a list of available curve names.
3301 [`crypto.getCurves()`][] to obtain a list of available curve names. On recent
4110 ### `crypto.getCurves()`
4120 getCurves,
4123 console.log(getCurves()); // ['Oakley-EC2N-3', 'Oakley-EC2N-4', ...]
4128 getCurves,
4131 console.log(getCurves()); // ['Oakley-EC2N-3', 'Oakley-EC2N-4', ...]
6156 [`crypto.getCurves()`]: #cryptogetcurves
Dtls.md1889 curve automatically. Use [`crypto.getCurves()`][] to obtain a list of
2303 [`crypto.getCurves()`]: crypto.md#cryptogetcurves
/third_party/node/doc/changelogs/
DCHANGELOG_IOJS.md937 …om/nodejs/node/commit/38d1afc24d)] - **(SEMVER-MINOR)** **crypto**: add getCurves() to get support…
964 …com/nodejs/node/commit/9f3a03f0d4)] - **doc**: add references to crypto.getCurves() (Roman Reiss) …