Zero-dependency package to generate seeded random bytes; TypeScript typings included.
Maintained by Mathieu Bour, Lead Platform Engineer at Cohesive Computing SA.
Install with npm:
npm install --save @csquare/random-bytes-seed
Install with Yarn:
yarn add @csquare/random-bytes-seed
Using CommonJS syntax:
const { randomBytesSeed } = require('@csquare/random-bytes-seed');
const output = randomBytesSeed(10, 'my-seed'); // Generate a 10-bytes, stable buffer
Using ESM syntax (default import):
import randomBytesSeed from '@csquare/random-bytes-seed';
const output = randomBytesSeed(10, 'my-seed'); // Generate a 10-bytes, stable buffer
or
import { randomBytesSeed } from '@csquare/random-bytes-seed';
const output = randomBytesSeed(10, 'my-seed'); // Generate a 10-bytes, stable buffer
If you do not provide a seed, the randomBytesSeed
will simply fallbacks to randomBytes
.
By default, this packages uses a base seed equals to random-bytes-seed
in conjunction of the given seed. You can
change the base seed by overriding the default options.
import { options } from '@csquare/random-bytes-seed';
options.seed = 'any-string-you-want'; // Override the base seed for all future calls
This package use Node createHash
function from the crypto
module. By default, the rounds are computed with
the sha256
hash algorithm. You can change this behavior by overriding the default options.
import { options } from '@csquare/random-bytes-seed';
options.algorithm = 'sha512'; // Use sha512 algorithm instead of sh256
From the nodejs.org documentation:
The algorithm is dependent on the available algorithms supported by the version of OpenSSL on the platform. Examples are
'sha256'
,'sha512'
, etc. On recent releases of OpenSSL,openssl list -digest-algorithms
(openssl list-message-digest-algorithms
for older versions of OpenSSL) will display the available digest algorithms.Reference: https://nodejs.org/api/crypto.html#crypto_crypto_createhash_algorithm_options