You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Daniel Hübleitner 615619e6e7 start werk hace 5 años
..
.travis.yml start werk hace 5 años
.zuul.yml start werk hace 5 años
LICENSE start werk hace 5 años
README.md start werk hace 5 años
browser.js start werk hace 5 años
index.js start werk hace 5 años
package.json start werk hace 5 años
test.js start werk hace 5 años

README.md

randomfill

Version

randomfill from node that works in the browser. In node you just get crypto.randomBytes, but in the browser it uses .crypto/msCrypto.getRandomValues

var randomFill = require('randomfill');
var buf
randomFill.randomFillSync(16);//get 16 random bytes
randomFill.randomFill(16, function (err, resp) {
  // resp is 16 random bytes
});