Illia Kozyr c722a49f64 React Project DONE | před 2 roky | |
---|---|---|
.. | ||
.travis.yml | před 2 roky | |
.zuul.yml | před 2 roky | |
LICENSE | před 2 roky | |
README.md | před 2 roky | |
browser.js | před 2 roky | |
index.js | před 2 roky | |
package.json | před 2 roky | |
test.js | před 2 roky |
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
});