ilya_shyian 1c5a2a8f35 +react/react-store 3 tahun lalu
..
.travis.yml 1c5a2a8f35 +react/react-store 3 tahun lalu
.zuul.yml 1c5a2a8f35 +react/react-store 3 tahun lalu
LICENSE 1c5a2a8f35 +react/react-store 3 tahun lalu
README.md 1c5a2a8f35 +react/react-store 3 tahun lalu
browser.js 1c5a2a8f35 +react/react-store 3 tahun lalu
index.js 1c5a2a8f35 +react/react-store 3 tahun lalu
package.json 1c5a2a8f35 +react/react-store 3 tahun lalu
test.js 1c5a2a8f35 +react/react-store 3 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
});