yuanhao b574408fd7 first commit 3 years ago
..
.travis.yml b574408fd7 first commit 3 years ago
.zuul.yml b574408fd7 first commit 3 years ago
LICENSE b574408fd7 first commit 3 years ago
README.md b574408fd7 first commit 3 years ago
browser.js b574408fd7 first commit 3 years ago
index.js b574408fd7 first commit 3 years ago
package.json b574408fd7 first commit 3 years ago
test.js b574408fd7 first commit 3 years ago

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