📜  Node.js crypto.webcrypto 属性

📅  最后修改于: 2022-05-13 01:56:53.628000             🧑  作者: Mango

Node.js crypto.webcrypto 属性

crypto.webcrypto是crypto 模块中Crypto 类的内置应用程序编程接口,用于获取Web Crypto API 标准的crypto 对象。

句法:

const crypto.webcrypto

参数:此属性不接受任何参数。

返回值:此属性返回 Web Crypto API 标准的加密对象。

示例 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.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) [ 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