Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
bigint-secrets
Advanced tools
Cryptographically secure random numbers and prime generation/testing using native JS (stage 3) implementation of BigInt
Secure random numbers and probable prime (Miller-Rabin primality test) generation/testing using native JS (stage 3) implementation of BigInt. It can be used with Node.js (>=10.4.0) and Web Browsers supporting BigInt.
The operations supported on BigInts are not constant time. BigInt can be therefore unsuitable for use in cryptography
Many platforms provide native support for cryptography, such as webcrypto or node crypto.
bigint-secrets is distributed as both an ES6 and a CJS module.
The ES6 module is built for any web browser supporting BigInt. The module only uses native javascript implementations and no polyfills had been applied.
The CJS module is built as a standard node module.
bigint-secrets can be imported to your project with npm
:
npm install bigint-secrets
For web browsers, you can also download the bundle from GitHub.
With node js:
const secrets = require('bigingt-secrets');
// Generation of a probable prime of 2048 bits
const prime = await secrets.prime(2048);
// Testing if a prime is a probable prime (Miller-Rabin)
if ( await secrets.isProbablyPrime(prime) )
return true;
// Get a cryptographically secure random number between 1 and 2**256 bits.
const rnd = secrets.randBetween(BigInt(2**256));
From a browser:
<script type="module">
import * as bigintSecrets from 'bigint-secrets-latest.browser.mod.min.js';
(async function () {
// Get a cryptographically secure random number between 1 and 2**256 bits.
const rnd = await bigintSecrets.randBetween(BigInt(2 ** 256));
alert(rnd);
// Generation of a probable prime of 2018 bits
const p = await bigintSecrets.prime(2048);
// Testing if a prime is a probable prime (Miller-Rabin)
const isPrime = await bigintSecrets.isProbablyPrime(p);
alert(p.toString() + '\nIs prime?\n' + isPrime);
})();
</script>
Promise
Secure random bytes for both node and browsers. Browser implementation uses WebWorkers in order to not lock the main process
Promise
Returns a cryptographically secure random integer between [min,max]
Promise
The test first tries if any of the first 250 small primes are a factor of the input number and then passes several iterations of Miller-Rabin Probabilistic Primality Test (FIPS 186-4 C.3.1)
Promise
A probably-prime (Miller-Rabin), cryptographically-secure, random-number generator
Promise
Secure random bytes for both node and browsers. Browser implementation uses WebWorkers in order to not lock the main process
Kind: global function
Returns: Promise
- A promise that resolves to a Buffer/UInt8Array filled with cryptographically secure random bytes
Param | Type | Default | Description |
---|---|---|---|
byteLength | number | The desired number of random bytes | |
forceLength | boolean | false | If we want to force the output to have a bit length of 8*byteLength. It basically forces the msb to be 1 |
Promise
Returns a cryptographically secure random integer between [min,max]
Kind: global function
Returns: Promise
- A promise that resolves to a cryptographically secure random bigint between [min,max]
Param | Type | Default | Description |
---|---|---|---|
max | bigint | Returned value will be <= max | |
min | bigint | 1 | Returned value will be >= min |
Promise
The test first tries if any of the first 250 small primes are a factor of the input number and then passes several iterations of Miller-Rabin Probabilistic Primality Test (FIPS 186-4 C.3.1)
Kind: global function
Returns: Promise
- A promise that resolve to a boolean that is either true (a probably prime number) or false (definitely composite)
Param | Type | Default | Description |
---|---|---|---|
w | bigint | An integer to be tested for primality | |
iterations | number | 16 | The number of iterations for the primality test. The value shall be consistent with Table C.1, C.2 or C.3 |
Promise
A probably-prime (Miller-Rabin), cryptographically-secure, random-number generator
Kind: global function
Returns: Promise
- A promise that resolves to a bigint probable prime of bitLength bits
Param | Type | Default | Description |
---|---|---|---|
bitLength | number | The required bit length for the generated prime | |
iterations | number | 16 | The number of iterations for the Miller-Rabin Probabilistic Primality Test |
FAQs
Cryptographically secure random numbers and prime generation/testing using native JS (stage 3) implementation of BigInt
The npm package bigint-secrets receives a total of 4 weekly downloads. As such, bigint-secrets popularity was classified as not popular.
We found that bigint-secrets demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.