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


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


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

参考:https://nodejs.org/dist/latest-v15.x/docs/api/crypto.html#crypto_crypto_checkprimesync_candidate_options

相关用法


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