night-cherry c3c5588342 web project files hace 1 mes
..
.travis.yml c3c5588342 web project files hace 1 mes
.zuul.yml c3c5588342 web project files hace 1 mes
LICENSE c3c5588342 web project files hace 1 mes
README.md c3c5588342 web project files hace 1 mes
browser.js c3c5588342 web project files hace 1 mes
index.js c3c5588342 web project files hace 1 mes
package.json c3c5588342 web project files hace 1 mes
test.js c3c5588342 web project files hace 1 mes

README.md

randombytes

Version Build Status

randombytes from node that works in the browser. In node you just get crypto.randomBytes, but in the browser it uses .crypto/msCrypto.getRandomValues

var randomBytes = require('randombytes');
randomBytes(16);//get 16 random bytes
randomBytes(16, function (err, resp) {
  // resp is 16 random bytes
});