You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
351 B

  1. 'use strict';
  2. var crypto = window.crypto || window.msCrypto; // IE 11 uses window.msCrypto
  3. function randomByte() {
  4. if (!crypto || !crypto.getRandomValues) {
  5. return Math.floor(Math.random() * 256) & 0x30;
  6. }
  7. var dest = new Uint8Array(1);
  8. crypto.getRandomValues(dest);
  9. return dest[0] & 0x30;
  10. }
  11. module.exports = randomByte;