No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit hace 3 años
..
.travis.yml First Commit hace 3 años
.zuul.yml First Commit hace 3 años
LICENSE First Commit hace 3 años
README.md First Commit hace 3 años
browser.js First Commit hace 3 años
index.js First Commit hace 3 años
package.json First Commit hace 3 años
test.js First Commit hace 3 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
});