root 3bf41bf355 update | hai 1 ano | |
---|---|---|
.. | ||
.travis.yml | hai 1 ano | |
.zuul.yml | hai 1 ano | |
LICENSE | hai 1 ano | |
README.md | hai 1 ano | |
browser.js | hai 1 ano | |
index.js | hai 1 ano | |
package.json | hai 1 ano | |
test.js | hai 1 ano |
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
});