XuelesszzZ 94af2b8e7b 6-30-5 1 tahun lalu
..
.travis.yml 94af2b8e7b 6-30-5 1 tahun lalu
.zuul.yml 94af2b8e7b 6-30-5 1 tahun lalu
LICENSE 94af2b8e7b 6-30-5 1 tahun lalu
README.md 94af2b8e7b 6-30-5 1 tahun lalu
browser.js 94af2b8e7b 6-30-5 1 tahun lalu
index.js 94af2b8e7b 6-30-5 1 tahun lalu
package.json 94af2b8e7b 6-30-5 1 tahun lalu
test.js 94af2b8e7b 6-30-5 1 tahun lalu

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