Searched refs:createPublicKey (Results 1 - 20 of 20) sorted by relevance
/third_party/node/deps/npm/node_modules/@sigstore/core/dist/ |
H A D | crypto.js | 6 exports.bufferEqual = exports.verify = exports.hash = exports.digest = exports.createPublicKey = void 0; 24 function createPublicKey(key) { function 26 return crypto_1.default.createPublicKey(key); 29 return crypto_1.default.createPublicKey({ key, format: 'der', type: 'spki' }); 32 exports.createPublicKey = createPublicKey;
|
/third_party/node/test/parallel/ |
H A D | test-crypto-key-objects.js | 14 createPublicKey, 96 // Passing an existing public key object to createPublicKey should throw. 97 const publicKey = createPublicKey(publicPem); 98 assert.throws(() => createPublicKey(publicKey), { 106 assert.throws(() => createPrivateKey(createPublicKey(privatePem)), { 152 const publicKey = createPublicKey(publicPem); 165 const derivedPublicKey = createPublicKey(privateKey); 171 const publicKeyFromJwk = createPublicKey({ key: publicJwk, format: 'jwk' }); 185 const decryptedKey = createPublicKey({ 321 const key = createPublicKey(publicPe [all...] |
H A D | test-crypto-dh-stateless.js | 60 const alicePublicKey = crypto.createPublicKey({ 90 const bobPublicKey = crypto.createPublicKey({ 186 const publicKey = crypto.createPublicKey({
|
H A D | test-crypto-async-sign-verify.js | 21 let publicKey = crypto.createPublicKey(publicPem); 116 key: crypto.createPublicKey(
|
H A D | test-crypto-sign-verify.js | 448 const pubKeyObj = crypto.createPublicKey(pair.public); 643 const publicKey = crypto.createPublicKey(publicPem); 676 const publicKey = crypto.createPublicKey(publicPem); 718 const publicKey = crypto.createPublicKey(publicPem);
|
H A D | test-webcrypto-export-import-cfrg.js | 363 const rsaPublic = crypto.createPublicKey(
|
H A D | test-webcrypto-export-import-rsa.js | 554 const ecPublic = crypto.createPublicKey(
|
H A D | test-webcrypto-export-import-ec.js | 394 const rsaPublic = crypto.createPublicKey(
|
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/utils/ |
H A D | key.js | 37 const key = crypto_1.default.createPublicKey(keyInfo.keyVal); 52 key = crypto_1.default.createPublicKey(keyInfo.keyVal); 59 key = crypto_1.default.createPublicKey({ 71 key = crypto_1.default.createPublicKey(keyInfo.keyVal); 78 key = crypto_1.default.createPublicKey({
|
/third_party/node/benchmark/crypto/ |
H A D | create-keyobject.js | 42 publicKey: crypto.createPublicKey(keyFixtures[keyType].publicKey), 50 fn = crypto.createPublicKey; 59 fn = crypto.createPublicKey; 71 fn = crypto.createPublicKey;
|
H A D | oneshot-verify.js | 97 keyObjects ||= pems.map(crypto.createPublicKey);
|
/third_party/node/deps/npm/node_modules/@sigstore/verify/dist/trust/ |
H A D | index.js | 40 publicKey: core_1.crypto.createPublicKey(tlogInstance.publicKey.rawBytes), 68 publicKey: core_1.crypto.createPublicKey(key.rawBytes),
|
/third_party/node/lib/internal/crypto/ |
H A D | cfrg.js | 44 createPublicKey, 212 keyObject = createPublicKey({ 308 if (!createPublicKey(keyObject).equals(publicKeyObject)) {
|
H A D | ec.js | 45 createPublicKey, 173 keyObject = createPublicKey({
|
H A D | rsa.js | 49 createPublicKey, 213 keyObject = createPublicKey({
|
H A D | keys.js | 611 function createPublicKey(key) { function 763 createPublicKey,
|
/third_party/node/lib/ |
H A D | crypto.js | 79 createPublicKey, 188 createPublicKey,
|
/third_party/node/deps/npm/node_modules/@sigstore/verify/dist/timestamp/ |
H A D | tsa.js | 41 const signingKey = core_1.crypto.createPublicKey(leaf.publicKey);
|
/third_party/node/deps/npm/node_modules/@sigstore/verify/dist/key/ |
H A D | index.js | 69 key: core_1.crypto.createPublicKey(cert.publicKey),
|
/third_party/node/deps/npm/node_modules/sigstore/dist/ |
H A D | config.js | 49 publicKey: core_1.crypto.createPublicKey(key),
|
Completed in 9 milliseconds