lihai 8d6c751f49 feat: push 2 роки тому
..
.travis.yml 8d6c751f49 feat: push 2 роки тому
.zuul.yml 8d6c751f49 feat: push 2 роки тому
LICENSE 8d6c751f49 feat: push 2 роки тому
README.md 8d6c751f49 feat: push 2 роки тому
browser.js 8d6c751f49 feat: push 2 роки тому
index.js 8d6c751f49 feat: push 2 роки тому
package.json 8d6c751f49 feat: push 2 роки тому
test.js 8d6c751f49 feat: push 2 роки тому

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