Eric Foster 35b96bc934 initial commit il y a 6 ans
..
.travis.yml initial commit il y a 6 ans
.zuul.yml initial commit il y a 6 ans
LICENSE initial commit il y a 6 ans
README.md initial commit il y a 6 ans
browser.js initial commit il y a 6 ans
index.js initial commit il y a 6 ans
package.json initial commit il y a 6 ans
test.js initial commit il y a 6 ans

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