peach a19a732be8 commit message | há 2 anos atrás | |
---|---|---|
.. | ||
.travis.yml | há 2 anos atrás | |
.zuul.yml | há 2 anos atrás | |
LICENSE | há 2 anos atrás | |
README.md | há 2 anos atrás | |
browser.js | há 2 anos atrás | |
index.js | há 2 anos atrás | |
package.json | há 2 anos atrás | |
test.js | há 2 anos atrás |
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
});