checkPrimeSync()是加密模塊中Crypto類的內置應用程序編程接口,用於檢查傳遞的緩衝區對象是否為質數。
用法:
const crypto.checkPrimeSync(candidate[, options])
參數:該函數將以下參數作為參數。
- candidate:這是緩衝區的對象,代表任意長度的大端字節序列。
- option:該選項將更改此函數的操作。
返回值:當且僅當候選者是素數時,此函數才返回true。
範例1:
index.js
// Node.js program to demonstrate the
// crypto.checkPrimeSync() function
// Importing crypto module
const crypto = require('crypto')
// creating and intializing new
// ArrayBuffer object
const buffer = new ArrayBuffer(8)
// checking if the buffer object is prime or not
// by using checkPrimeSync() method
const val = crypto.checkPrimeSync(buffer)
//display the result
if(val)
console.log("candidate is a prime")
else
console.log("candidate is not a prime")
使用以下命令運行index.js文件:
node index.js
輸出:
candidate is not a prime
範例2:
index.js
// Node.js program to demonstrate the
// crypto.checkPrimeSync() function
// Importing crypto module
const crypto = require('crypto')
// creating and intializing new
// BigInt object
const buffer = BigInt("0o377777777777777777")
// checking if the buffer object is prime or not
// by using checkPrimeSync() method
const val = crypto.checkPrimeSync(buffer)
//display the result
if(val)
console.log("candidate is a prime")
else
console.log("candidate is not a prime")
使用以下命令運行index.js文件:
node index.js
輸出:
candidate is not a prime
相關用法
- 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()用法及代碼示例
- Node.js GM drawPolygon()用法及代碼示例
- Node.js GM drawRectangle()用法及代碼示例
- Node.js GM paint()用法及代碼示例
- Node.js GM orderedDither()用法及代碼示例
- Node.js GM roll()用法及代碼示例
- Node.js GM segment()用法及代碼示例
- Node.js GM quality()用法及代碼示例
- Node.js GM raise()用法及代碼示例
- Node.js GM resize()用法及代碼示例
- Node.js GM transparent()用法及代碼示例
- Node.js GM thumbnail()用法及代碼示例
- Node.js GM threshold()用法及代碼示例
- Node.js GM whitePoint()用法及代碼示例
- Node.js GM whiteThreshold()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node.js crypto.checkPrimeSync() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。