xusl 2be7077787 初始化 1 éve
..
.travis.yml 2be7077787 初始化 1 éve
.zuul.yml 2be7077787 初始化 1 éve
LICENSE 2be7077787 初始化 1 éve
README.md 2be7077787 初始化 1 éve
browser.js 2be7077787 初始化 1 éve
index.js 2be7077787 初始化 1 éve
package.json 2be7077787 初始化 1 éve
test.js 2be7077787 初始化 1 éve

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
});