Home
last modified time | relevance | path

Searched refs:exportPublicKey (Results 1 – 4 of 4) sorted by relevance

/third_party/node/lib/internal/crypto/
Dcertificate.js22 function exportPublicKey(spkac, encoding) { function
46 Certificate.prototype.exportPublicKey = exportPublicKey; method in Certificate
50 Certificate.exportPublicKey = exportPublicKey;
/third_party/node/test/parallel/
Dtest-crypto-certificate.js48 stripLineEndings(certificate.exportPublicKey(spkacValid).toString('utf8')),
51 assert.strictEqual(certificate.exportPublicKey(spkacFail), '');
87 () => Certificate.exportPublicKey(buf), {
119 assert.throws(() => Certificate.exportPublicKey(val), errObj);
/third_party/node/doc/api/
Dcrypto.md122 ### Static method: `Certificate.exportPublicKey(spkac[, encoding])`
141 const publicKey = Certificate.exportPublicKey(spkac);
149 const publicKey = Certificate.exportPublicKey(spkac);
244 #### `certificate.exportPublicKey(spkac[, encoding])`
259 const publicKey = cert.exportPublicKey(spkac);
268 const publicKey = cert.exportPublicKey(spkac);
/third_party/node/doc/changelogs/
DCHANGELOG_V8.md3692 …com/nodejs/node/commit/0bbdb78962)] - **src**: reduce allocations in exportPublicKey() (Ben Noordh…