katwhite 2bb8a30479 i hope this works před 4 roky
..
.travis.yml 2bb8a30479 i hope this works před 4 roky
.zuul.yml 2bb8a30479 i hope this works před 4 roky
LICENSE 2bb8a30479 i hope this works před 4 roky
README.md 2bb8a30479 i hope this works před 4 roky
browser.js 2bb8a30479 i hope this works před 4 roky
index.js 2bb8a30479 i hope this works před 4 roky
package.json 2bb8a30479 i hope this works před 4 roky
test.js 2bb8a30479 i hope this works před 4 roky

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