Searched refs:verifySpkac (Results 1 – 3 of 3) sorted by relevance
/third_party/node/test/parallel/ |
D | test-crypto-certificate.js | 44 assert.strictEqual(certificate.verifySpkac(spkacValid), true); 45 assert.strictEqual(certificate.verifySpkac(spkacFail), false); 60 assert.strictEqual(certificate.verifySpkac(ab), true); 61 assert.strictEqual(certificate.verifySpkac(new Uint8Array(ab)), true); 62 assert.strictEqual(certificate.verifySpkac(new DataView(ab)), true); 79 () => Certificate.verifySpkac(buf), { 112 () => Certificate.verifySpkac(val),
|
/third_party/node/lib/internal/crypto/ |
D | certificate.js | 17 function verifySpkac(spkac, encoding) { function 45 Certificate.prototype.verifySpkac = verifySpkac; method in Certificate 51 Certificate.verifySpkac = verifySpkac;
|
/third_party/node/doc/api/ |
D | crypto.md | 154 ### Static method: `Certificate.verifySpkac(spkac[, encoding])` 176 console.log(Certificate.verifySpkac(Buffer.from(spkac))); 185 console.log(Certificate.verifySpkac(Buffer.from(spkac))); 273 #### `certificate.verifySpkac(spkac[, encoding])` 290 console.log(cert.verifySpkac(Buffer.from(spkac))); 300 console.log(cert.verifySpkac(Buffer.from(spkac)));
|