當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js Certificate.exportChallenge(spkac[, encoding])用法及代碼示例


靜態方法:Certificate.exportChallenge(spkac[, encoding])

曆史
版本變化
v15.0.0

spkac 參數可以是 ArrayBuffer。將 spkac 參數的大小限製為最大 2**31 - 1 個字節。

v9.0.0

添加於:v9.0.0


參數
const { Certificate } = await import('node:crypto');
const spkac = getSpkacSomehow();
const challenge = Certificate.exportChallenge(spkac);
console.log(challenge.toString('utf8'));
// Prints: the challenge as a UTF8 stringconst { Certificate } = require('node:crypto');
const spkac = getSpkacSomehow();
const challenge = Certificate.exportChallenge(spkac);
console.log(challenge.toString('utf8'));
// Prints: the challenge as a UTF8 string

相關用法


注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 Certificate.exportChallenge(spkac[, encoding])。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。