Skip to content

ncthbrt/re-secure-random-string

Repository files navigation

re-secure-random-string

This is a simple wrapper around node's secure-random-string for BuckleScript and Reason. Safely generating a random string for cryptographic purposes is difficult using Node's build in crypto library. The secure-random-string library aims to make this easier.

Getting Started

Install using npm:

npm install --save @ncthbrt/re-secure-random-string

Then add @ncthbrt/re-secure-random-string as a dependency in bsconfig.json.

Usage

Synchronous usage

let randomString = SecureRandomString.gen(~length=64, ());

Asynchronous usage

SecureRandomString.gen(~length=64, ())
|> Js.Promise.then_(randomString => {
      Js.log2("Random string is", randomString);
      Js.Promise.resolve();
});

About

Bucklescript/ReasonML Bindings for secure-random-string

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages