Licence
MIT
Version
2.1.3
Deps
0
Size
7 kB
Vulns
0
Weekly
0
DeprecatedThis package is deprecated
randombytes
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
});