Home
last modified time | relevance | path

Searched refs:publicExponent (Results 1 – 25 of 42) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-webcrypto-keygen.js79 publicExponent: new Uint8Array([1, 0, 1]), property
91 publicExponent: new Uint8Array([1, 0, 1]), property
103 publicExponent: new Uint8Array([1, 0, 1]), property
182 publicExponent: new Uint8Array([1, 0, 1]) property
188 publicExponent: new Uint8Array([1, 0, 1]) property
257 publicExponent,
267 publicExponent, property
289 assert.deepStrictEqual(publicKey.algorithm.publicExponent, publicExponent);
291 KeyObject.from(publicKey).asymmetricKeyDetails.publicExponent,
292 bigIntArrayToUnsignedBigInt(publicExponent));
[all …]
Dtest-crypto-keygen.js308 for (const publicExponent of ['a', true, {}, []]) {
311 publicExponent field
317 common.invalidArgTypeHelper(publicExponent)
322 for (const publicExponent of [3.5, 1.1, 50.5, 510.5]) {
325 publicExponent field
332 `Received ${inspect(publicExponent)}`
337 for (const publicExponent of [-5, -3, 4294967297]) {
340 publicExponent field
348 for (const publicExponent of [1, 1 + 0x10001]) {
351 publicExponent field
Dtest-crypto-keygen-non-standard-public-exponent.js16 publicExponent: 3, property
25 publicExponent: 3n property
33 publicExponent: 3n property
Dtest-webcrypto-wrap-unwrap.js15 publicExponent: new Uint8Array([1, 0, 1]), property
69 publicExponent: new Uint8Array([1, 0, 1]), property
80 publicExponent: new Uint8Array([1, 0, 1]), property
91 publicExponent: new Uint8Array([1, 0, 1]), property
Dtest-webcrypto-export-import-rsa.js315 assert.deepStrictEqual(key.algorithm.publicExponent,
349 assert.deepStrictEqual(key.algorithm.publicExponent,
414 assert.deepStrictEqual(publicKey.algorithm.publicExponent,
416 assert.deepStrictEqual(publicKey.algorithm.publicExponent,
417 privateKey.algorithm.publicExponent);
Dtest-crypto-keygen-key-objects.js23 publicExponent: 65537n property
31 publicExponent: 65537n property
Dtest-crypto-keygen-duplicate-deprecated-option.js27 publicExponent: 65537n, property
37 publicExponent: 65537n, property
Dtest-crypto-keygen-rfc8017-a-2-3.js21 publicExponent: 65537n, property
38 publicExponent: 65537n, property
Dtest-crypto-keygen-deprecation.js35 publicExponent: 65537n, property
45 publicExponent: 65537n, property
Dtest-crypto-keygen-rsa-pss.js29 publicExponent: 65537n, property
39 publicExponent: 65537n, property
Dtest-webcrypto-sign-verify.js21 publicExponent: new Uint8Array([1, 0, 1]), property
44 publicExponent: new Uint8Array([1, 0, 1]), property
Dtest-webcrypto-sign-verify-hmac.js39 publicExponent: new Uint8Array([1, 0, 1]), property
130 publicExponent: new Uint8Array([1, 0, 1]), property
Dtest-webcrypto-sign-verify-ecdsa.js54 publicExponent: new Uint8Array([1, 0, 1]), property
177 publicExponent: new Uint8Array([1, 0, 1]), property
Dtest-webcrypto-sign-verify-eddsa.js52 publicExponent: new Uint8Array([1, 0, 1]), property
159 publicExponent: new Uint8Array([1, 0, 1]), property
Dtest-crypto-keygen-rfc8017-9-1.js24 publicExponent: 65537n, property
Dtest-crypto-keygen-no-rsassa-pss-params.js20 publicExponent: 65537n property
Dtest-crypto-keygen-async-encrypted-private-key-der.js20 publicExponent: 0x10001, property
Dtest-crypto-keygen-promisify.js23 publicExponent: 0x10001,
Dtest-crypto-keygen-sync.js23 publicExponent: 3, property
/third_party/node/lib/internal/crypto/
Drsa.js115 publicExponent,
121 const publicExponentConverted = bigIntArrayToUnsignedInt(publicExponent);
147 publicExponent: publicExponentConverted, property
157 publicExponent, property
298 publicExponent,
304 publicExponent: new Uint8Array(publicExponent), property
Dkeygen.js187 let { publicExponent } = options;
188 if (publicExponent == null) {
189 publicExponent = 0x10001;
191 validateUint32(publicExponent, 'options.publicExponent');
199 publicExponent,
242 publicExponent,
/third_party/node/test/fixtures/wpt/WebCryptoAPI/generateKey/
Dfailures.js97 [new Uint8Array([1]), new Uint8Array([1,0,0])].forEach(function(publicExponent) { argument
98 ….push({name: algorithmName, hash: "SHA-256", modulusLength: 1024, publicExponent: publicExponent}); property
151 … {name: "RSA", hash: "SHA-256", modulusLength: 2048, publicExponent: new Uint8Array([1,0,1])}, property
152 … {name: "RSA-PSS", hash: "SHA", modulusLength: 2048, publicExponent: new Uint8Array([1,0,1])}, property
/third_party/node/benchmark/crypto/
Dkeygen.js21 publicExponent: 0x10001, property
38 publicExponent: 0x10001, property
/third_party/node/test/fixtures/wpt/WebCryptoAPI/wrapKey_unwrapKey/
DwrapKey_unwrapKey.https.any.js36 …generateParameters: {name: "RSA-OAEP", modulusLength: 4096, publicExponent: new Uint8Array([1,0,1]… property
80 …{algorithm: {name: "RSASSA-PKCS1-v1_5", modulusLength: 1024, publicExponent: new Uint8Array([1,0,1… property
81 …{algorithm: {name: "RSA-PSS", modulusLength: 1024, publicExponent: new Uint8Array([1,0,1]), hash: … property
82 …{algorithm: {name: "RSA-OAEP", modulusLength: 1024, publicExponent: new Uint8Array([1,0,1]), hash:… property
220 params.publicExponent = undefined;
/third_party/openssl/test/recipes/30-test_evp_pkey_provided/
DRSA.priv.txt3 publicExponent: 65537 (0x10001)

12