Eric Foster 35b96bc934 initial commit 6 년 전
..
.travis.yml initial commit 6 년 전
.zuul.yml initial commit 6 년 전
LICENSE initial commit 6 년 전
README.md initial commit 6 년 전
browser.js initial commit 6 년 전
index.js initial commit 6 년 전
package.json initial commit 6 년 전
test.js initial commit 6 년 전

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