Searched refs:publicExponent (Results 1 – 8 of 8) sorted by relevance
/third_party/node/lib/internal/crypto/ |
D | keygen.js | 157 let { publicExponent } = options; 158 if (publicExponent == null) { 159 publicExponent = 0x10001; 160 } else if (!isUint32(publicExponent)) { 161 throw new ERR_INVALID_OPT_VALUE('publicExponent', publicExponent); 165 impl = (wrap) => generateKeyPairRSA(modulusLength, publicExponent, 180 impl = (wrap) => generateKeyPairRSAPSS(modulusLength, publicExponent,
|
/third_party/node/test/parallel/ |
D | test-crypto-keygen.js | 90 publicExponent: 3, property 139 publicExponent: 0x10001, property 161 publicExponent: 0x1001, property 192 publicExponent: 0x10001, property 235 publicExponent: 0x10001, property 546 publicExponent: 0x10001, 855 for (const publicExponent of ['a', true, {}, [], 3.5, -1]) { 856 const expected = typeof publicExponent === 'string' ? 857 publicExponent : inspect(publicExponent); 860 publicExponent field
|
/third_party/node/deps/npm/node_modules/sshpk/lib/formats/ |
D | dnssec.js | 78 var publicExponent = keyBuffer.slice(1, publicExponentLen+1); 79 publicExponent = utils.mpNormalize(publicExponent); 87 rsaKey.parts.push({ name: 'e', data: publicExponent});
|
/third_party/node/doc/api/ |
D | crypto.md | 2157 * `publicExponent`: {number} Public exponent (RSA). **Default:** `0x10001`. 2227 * `publicExponent`: {number} Public exponent (RSA). **Default:** `0x10001`.
|
/third_party/typescript/src/lib/ |
D | webworker.generated.d.ts | 492 publicExponent: BigInteger; property
|
D | dom.generated.d.ts | 1661 publicExponent: BigInteger; property 1666 publicExponent: BigInteger; property
|
/third_party/typescript/lib/ |
D | lib.webworker.d.ts | 512 publicExponent: BigInteger; property
|
D | lib.dom.d.ts | 1681 publicExponent: BigInteger; property 1686 publicExponent: BigInteger; property
|