rng-browser.js 969 B

123456789101112131415161718192021222324252627282930313233
  1. // Unique ID creation requires a high quality random # generator. In the
  2. // browser this is a little complicated due to unknown quality of Math.random()
  3. // and inconsistent support for the `crypto` API. We do the best we can via
  4. // feature-detection
  5. var rng;
  6. var crypto = global.crypto || global.msCrypto; // for IE 11
  7. if (crypto && crypto.getRandomValues) {
  8. // WHATWG crypto RNG - http://wiki.whatwg.org/wiki/Crypto
  9. var rnds8 = new Uint8Array(16); // eslint-disable-line no-undef
  10. rng = function whatwgRNG() {
  11. crypto.getRandomValues(rnds8);
  12. return rnds8;
  13. };
  14. }
  15. if (!rng) {
  16. // Math.random()-based (RNG)
  17. //
  18. // If all else fails, use Math.random(). It's fast, but is of unspecified
  19. // quality.
  20. var rnds = new Array(16);
  21. rng = function() {
  22. for (var i = 0, r; i < 16; i++) {
  23. if ((i & 0x03) === 0) r = Math.random() * 0x100000000;
  24. rnds[i] = r >>> ((i & 0x03) << 3) & 0xff;
  25. }
  26. return rnds;
  27. };
  28. }
  29. module.exports = rng;