katwhite 2bb8a30479 i hope this works преди 4 години
..
.travis.yml 2bb8a30479 i hope this works преди 4 години
.zuul.yml 2bb8a30479 i hope this works преди 4 години
LICENSE 2bb8a30479 i hope this works преди 4 години
README.md 2bb8a30479 i hope this works преди 4 години
browser.js 2bb8a30479 i hope this works преди 4 години
index.js 2bb8a30479 i hope this works преди 4 години
package.json 2bb8a30479 i hope this works преди 4 години
test.js 2bb8a30479 i hope this works преди 4 години

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