Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Daniel Hübleitner 615619e6e7 start werk il y a 5 ans
..
.travis.yml start werk il y a 5 ans
.zuul.yml start werk il y a 5 ans
LICENSE start werk il y a 5 ans
README.md start werk il y a 5 ans
browser.js start werk il y a 5 ans
index.js start werk il y a 5 ans
package.json start werk il y a 5 ans
test.js start werk il y a 5 ans

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