js-crypto-random
Version:
Universal Module for Secure Random Generator in JavaScript
56 lines (39 loc) • 1.99 kB
Markdown
Universal Module for Secure Random Generator in JavaScript
--
[](https://badge.fury.io/js/js-crypto-random)
[](https://opensource.org/licenses/MIT)
> **WARNING**: At this time this solution should be considered suitable for research and experimentation, further code and security review is needed before utilization in a production application.
This library is designed to 'universally' provide functions of random sequence generators, i.e., it works both on most modern browsers and on Node.js just by importing from NPM/source code. Note that in the design principle, the library fully utilizes native APIs like WebCrypto API to accelerate its operation if available.
At your project directory, do either one of the following.
- From npm/yarn:
```shell
$ npm install --save js-crypto-random // npm
$ yarn add js-crypto-random // yarn
```
- From GitHub:
```shell
$ git clone https://github.com/junkurihara/jscu.git
$ cd js-crypto-utils/packages/js-crypto-random
& yarn build
```
Then you should import the package as follows.
```shell
import random from 'js-crypto-random'; // for npm
import random from 'path/to/js-crypto-random/dist/index.js'; // for github
```
The bundled file is also given as `js-crypto-random/dist/jscrandom.bundle.js` for a use case where the module is imported as a `window.jscrandom` object via `script` tags.
```javascript
// now you get an Uint8Array of 32 bytes filled with randomly generated values
const randomBytes = random.getRandomBytes(32);
```
```javascript
// now you get a string of 32 ASCII characters generated in a cryptographically random manner
const randomAscii = random.getRandomAsciiString(32);
```
Licensed under the MIT license, see `LICENSE` file.