當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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