Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
nitowa 1dae68b1c7 init 1 ano atrás
..
.travis.yml init 1 ano atrás
.zuul.yml init 1 ano atrás
LICENSE init 1 ano atrás
README.md init 1 ano atrás
browser.js init 1 ano atrás
index.js init 1 ano atrás
package.json init 1 ano atrás
test.js init 1 ano atrás

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