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 = ;;//get 16 random bytes;
Bring your own crypto
var randomBytes = ; // set your own crypto supporting `randomBytes` functionrandomBytes; ; //get 16 random bytes