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


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


crypto.checkPrime()是加密模块中Crypto类的内置应用程序编程接口,用于检查传递的缓冲区对象是否为质数。

用法:

const crypto.checkPrime(candidate[, options, [callback]])

参数:此API使用以下参数作为参数。

  • candidate:它是缓冲区的对象,代表任意长度的大端字节序列。
  • option:任何其他可更改此API操作的选项。
  • callback:它是执行的回调函数,并作为可选参数传递。

返回值:仅当候选人为素数时,此API才会返回true。

范例1:



index.js


// Node.js program to demonstrate the  
// crypto.checkPrime() api
  
// 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 checkPrime() method
crypto.checkPrime(buffer, (err, val) => {
  
    // Checking if any error is found
    if (err) throw new Error('Uh oh!');
  
    // 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.checkPrime() api
  
// Importing crypto module
const crypto = require('crypto')
  
// Creating and intializing new 
// ArrayBuffer object
const buffer = BigInt("0o377777777777777777")
  
// Checking if the buffer object is prime or not
// by using checkPrime() method
crypto.checkPrime(buffer, (err, val) => {
  
    // Checking if any error is found
    if (err) throw new Error('Uh oh!');
  
    // 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_checkprime_candidate_options_callback

相关用法


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