1.0.1 • Published 9 days ago

crypto-miller-rabin v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
9 days ago

Crypto Miller-Rabin

Implementation of the Miller-Rabin primality test.

Install

npm install crypto-miller-rabin

Usage

import isProbablyPrime from 'crypto-miller-rabin';

// Let's check if a bigint is probably prime, performing 30 rounds of Miller-Rabin tests

isProbablyPrime ( 428619803581219889005329334991561182527277683715078274359377824192296037302435017260422513n, 30 ); // => true

License

MIT © Fabio Spampinato