当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js new crypto.Certificate()用法及代码示例


new crypto.Certificate()

Certificate 类的实例可以使用 new 关键字或通过调用 crypto.Certificate() 作为函数来创建:

const { Certificate } = await import('node:crypto');

const cert1 = new Certificate();
const cert2 = Certificate();const { Certificate } = require('node:crypto');

const cert1 = new Certificate();
const cert2 = Certificate();

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 new crypto.Certificate()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。