Searched refs:getCurves (Results 1 – 11 of 11) sorted by relevance
/third_party/node/test/parallel/ |
D | test-crypto.js | 161 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);
|
D | test-crypto-keygen-missing-oid.js | 11 getCurves, 19 if (!getCurves().includes(namedCurve))
|
D | test-crypto-ecdh-convert-key.js | 8 const { ECDH, createSign, getCurves } = require('crypto'); 43 if (getCurves().includes('secp256k1')) {
|
D | test-crypto-dh-stateless.js | 219 const not256k1 = crypto.getCurves().find((c) => /^sec.*(224|384|512)/.test(c));
|
D | test-crypto-dh-curves.js | 22 const availableCurves = new Set(crypto.getCurves());
|
D | test-crypto-key-objects.js | 22 getCurves, 802 const namedCurve = getCurves().find((curve) => !supported.includes(curve));
|
/third_party/node/lib/internal/crypto/ |
D | util.js | 28 getCurves: _getCurves, 102 const getCurves = cachedResult(() => filterDuplicateStrings(_getCurves())); constant 561 getCurves, property
|
/third_party/node/lib/ |
D | crypto.js | 115 getCurves, 197 getCurves, property
|
/third_party/node/doc/api/ |
D | crypto.md | 1288 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
|
D | tls.md | 1889 curve automatically. Use [`crypto.getCurves()`][] to obtain a list of 2303 [`crypto.getCurves()`]: crypto.md#cryptogetcurves
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_IOJS.md | 937 …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) …
|