prc b6c02717e6 Upload complete no-internet building environment. 1 년 전
..
.travis.yml b6c02717e6 Upload complete no-internet building environment. 1 년 전
.zuul.yml b6c02717e6 Upload complete no-internet building environment. 1 년 전
LICENSE b6c02717e6 Upload complete no-internet building environment. 1 년 전
README.md b6c02717e6 Upload complete no-internet building environment. 1 년 전
browser.js b6c02717e6 Upload complete no-internet building environment. 1 년 전
index.js b6c02717e6 Upload complete no-internet building environment. 1 년 전
package.json b6c02717e6 Upload complete no-internet building environment. 1 년 전
test.js b6c02717e6 Upload complete no-internet building environment. 1 년 전

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