Socket
Socket
Sign inDemoInstall

js-crypto-random

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-crypto-random

Universal Module for Secure Random Generator in JavaScript


Version published
Weekly downloads
65K
decreased by-6.84%
Maintainers
1
Weekly downloads
 
Created
Source

Universal Module for Secure Random Generator in JavaScript

npm version Dependencies License: 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.

Introduction and Overview

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.

Installation

At your project directory, do either one of the following.

  • From npm/yarn:
    $ npm install --save js-crypto-random // npm
    $ yarn add js-crypto-random // yarn
    
  • From GitHub:
    $ 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.

import aes from 'js-crypto-random'; // for npm
import aes 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.

Usage

Generate random byte sequence

// now you get an Uint8Array of 32 bytes filled with randomly generated values
const randomBytes = random.getRandomBytes(32);

Generate random ascii sequence

// now you get a string of 32 ASCII characters generated in a cryptographically random manner
const randomAscii = random.getRandomAsciiString(32);

License

Licensed under the MIT license, see LICENSE file.

Keywords

FAQs

Package last updated on 14 Jan 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc