innovationDriveApp/node_modules/randombytes
2018-07-08 22:49:17 +10:00
..
.travis.yml added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
.zuul.yml added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
browser.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
index.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
LICENSE added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
package.json deleted homepage in package.json 2018-07-08 22:49:17 +10:00
README.md added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
test.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00

randombytes

Version Build Status

randombytes from node that works in the browser. In node you just get crypto.randomBytes, but in the browser it uses .crypto/msCrypto.getRandomValues

var randomBytes = require('randombytes');
randomBytes(16);//get 16 random bytes
randomBytes(16, function (err, resp) {
  // resp is 16 random bytes
});