UNPKG

1.05 kBJavaScriptView Raw
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
6var getRandomValues = (typeof(crypto) != 'undefined' && crypto.getRandomValues) ||
7 (typeof(msCrypto) != 'undefined' && msCrypto.getRandomValues);
8if (getRandomValues) {
9 // WHATWG crypto RNG - http://wiki.whatwg.org/wiki/Crypto
10 var rnds8 = new Uint8Array(16); // eslint-disable-line no-undef
11
12 module.exports = function whatwgRNG() {
13 getRandomValues(rnds8);
14 return rnds8;
15 };
16} else {
17 // Math.random()-based (RNG)
18 //
19 // If all else fails, use Math.random(). It's fast, but is of unspecified
20 // quality.
21 var rnds = new Array(16);
22
23 module.exports = function mathRNG() {
24 for (var i = 0, r; i < 16; i++) {
25 if ((i & 0x03) === 0) r = Math.random() * 0x100000000;
26 rnds[i] = r >>> ((i & 0x03) << 3) & 0xff;
27 }
28
29 return rnds;
30 };
31}