npm.io
2.1.0 • Published 7 years ago

randombytes

Licence
MIT
Version
2.1.0
Deps
1
Size
6 kB
Vulns
0
Weekly
0
Stars
102

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
});

Keywords