anacl
TypeScript icon, indicating that this package has built-in type declarations

1.0.3-1 • Public • Published

anacl-js

Build Status

A TweetNaCl.js fork for asynchronous PRNGs.

The following methods which rely on the asynchronous PRNG are changed to return Promise:

  • nacl.randomBytes
  • nacl.box.keyPair
  • nacl.sign.keyPair

The followings are the default PRNGs used, depending on the platform anacl runs on:

  • window.crypto.getRandomValues (WebCrypto standard)
  • window.msCrypto.getRandomValues (Internet Explorer 11)
  • crypto.randomBytes (Node.js)
  • wx.getRandomValues (WeChat)

If the above are not available on the platform you are targeting, and you have a cryptographically-strong source of entropy, you can plug it in like this:

nacl.setPRNG(function(x, n) {
  // ... copy n random bytes into x, synchronously or asynchronously (return a promise) ...
});

Other than the above, check TweetNaCl.js for usage in general.

Package Sidebar

Install

npm i anacl

Weekly Downloads

0

Version

1.0.3-1

License

Unlicense

Unpacked Size

165 kB

Total Files

11

Last publish

Collaborators

  • u128393