Searched refs:createPublicKey (Results 1 – 22 of 22) sorted by relevance
/third_party/node/deps/npm/node_modules/sigstore/dist/util/ |
D | crypto.js | 6 …tes = exports.hash = exports.verifyBlob = exports.signBlob = exports.createPublicKey = exports.gen… 32 function createPublicKey(key) { function 34 return crypto_1.default.createPublicKey(key); 37 return crypto_1.default.createPublicKey({ key, format: 'der', type: 'spki' }); 40 exports.createPublicKey = createPublicKey;
|
D | crypto.d.ts | 6 export declare function createPublicKey(key: string | Buffer): KeyLike;
|
/third_party/node/test/parallel/ |
D | test-crypto-key-objects.js | 14 createPublicKey, 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(publicPem).export({ 404 const key = createPublicKey(input); [all …]
|
D | test-crypto-dh-stateless.js | 60 const alicePublicKey = crypto.createPublicKey({ 90 const bobPublicKey = crypto.createPublicKey({ 186 const publicKey = crypto.createPublicKey({
|
D | test-crypto-async-sign-verify.js | 21 let publicKey = crypto.createPublicKey(publicPem); 116 key: crypto.createPublicKey(
|
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);
|
D | test-webcrypto-export-import-cfrg.js | 363 const rsaPublic = crypto.createPublicKey(
|
D | test-webcrypto-export-import-rsa.js | 554 const ecPublic = crypto.createPublicKey(
|
D | test-webcrypto-export-import-ec.js | 394 const rsaPublic = crypto.createPublicKey(
|
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/utils/ |
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/ |
D | create-keyobject.js | 42 publicKey: crypto.createPublicKey(keyFixtures[keyType].publicKey), 50 fn = crypto.createPublicKey; 59 fn = crypto.createPublicKey; 71 fn = crypto.createPublicKey;
|
D | oneshot-verify.js | 97 keyObjects ||= pems.map(crypto.createPublicKey);
|
/third_party/node/lib/internal/crypto/ |
D | cfrg.js | 44 createPublicKey, 212 keyObject = createPublicKey({ 308 if (!createPublicKey(keyObject).equals(publicKeyObject)) {
|
D | ec.js | 45 createPublicKey, 173 keyObject = createPublicKey({
|
D | rsa.js | 49 createPublicKey, 213 keyObject = createPublicKey({
|
D | keys.js | 611 function createPublicKey(key) { function 763 createPublicKey, property
|
/third_party/node/deps/npm/node_modules/sigstore/dist/ |
D | verify.js | 102 return util_1.crypto.createPublicKey(cert); 112 return util_1.crypto.createPublicKey(key);
|
/third_party/node/lib/ |
D | crypto.js | 79 createPublicKey, 188 createPublicKey, property
|
/third_party/node/deps/npm/node_modules/sigstore/dist/tlog/verify/ |
D | set.js | 17 const publicKey = util_1.crypto.createPublicKey(tlog.publicKey.rawBytes);
|
/third_party/node/deps/npm/node_modules/sigstore/dist/x509/ |
D | sct.js | 47 const publicKey = util_1.crypto.createPublicKey(log.publicKey.rawBytes);
|
D | cert.js | 117 const key = util_1.crypto.createPublicKey(publicKey);
|
/third_party/node/doc/api/ |
D | crypto.md | 1918 [`crypto.createSecretKey()`][], [`crypto.createPublicKey()`][] and 2425 `object` had been passed to [`crypto.createPublicKey()`][]. If it is an 3509 ### `crypto.createPublicKey(key)` 4630 `key` had been passed to [`crypto.createPublicKey()`][]. If it is an 4686 `key` had been passed to [`crypto.createPublicKey()`][]. If it is an 5503 passed to [`crypto.createPublicKey()`][]. If it is an object, the following 6139 [`crypto.createPublicKey()`]: #cryptocreatepublickeykey
|