crypto.webcrypto是加密模块内的类Crypto的内置应用程序编程接口,用于获取Web Crypto API标准的加密对象。
用法:
const crypto.webcrypto
参数:此属性不接受任何参数。
返回值:此属性返回Web Crypto API标准的crypto对象。
范例1:
index.js
// Node.js program to demonstrate the
// crypto.webcrypto function
// Importing crypto module
const crypto = require('crypto')
// getting object of crypto
// by using webcrypto function
const val = crypto.webcrypto
const buffer = new ArrayBuffer(8)
//display the result
console.log(val.getRandomValues(Int16Array.of(buffer)))
使用以下命令运行index.js文件。
node index.js
输出:
Int16Array(1) [ 31796 ]
范例2:
index.js
// Node.js program to demonstrate the
// crypto.webcrypto function
//display the result
console.log((require('crypto').webcrypto)
.getRandomValues(Int16Array.of(new ArrayBuffer(8))))
使用以下命令运行index.js文件。
node index.js
输出:
Int16Array(1) [ -6968 ]
参考:https://nodejs.org/dist/latest-v15.x/docs/api/crypto.html#crypto_crypto_webcrypto
相关用法
- Node.js GM charcoal()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- Node.js GM drawLine()用法及代码示例
- Node.js GM drawArc()用法及代码示例
- Node.js GM drawPolyline()用法及代码示例
- Node.js GM drawBezier()用法及代码示例
- Node.js GM drawCircle()用法及代码示例
- Node.js GM drawEllipse()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js crypto.webcrypto Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。