certificate.exportPublicKey(spkac[, encoding])
-
spkac
<string> | <ArrayBuffer> | <Buffer> | <TypedArray> | <DataView> -
返回:<Buffer>
spkac
数据结构的公钥组件,包括公钥和挑战。¥Returns: <Buffer> The public key component of the
spkac
data structure, which includes a public key and a challenge.
const { Certificate } = await import('node:crypto');
const cert = Certificate();
const spkac = getSpkacSomehow();
const publicKey = cert.exportPublicKey(spkac);
console.log(publicKey);
// Prints: the public key as <Buffer ...>
const { Certificate } = require('node:crypto');
const cert = Certificate();
const spkac = getSpkacSomehow();
const publicKey = cert.exportPublicKey(spkac);
console.log(publicKey);
// Prints: the public key as <Buffer ...>