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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。