Current Path: > > lib > node_modules > npm > node_modules > uuid > lib
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
bytesToUuid.js | File | 747 bytes | March 10 2021 14:36:37. | |
md5-browser.js | File | 6824 bytes | March 10 2021 14:36:37. | |
md5.js | File | 576 bytes | March 10 2021 14:36:37. | |
rng-browser.js | File | 1312 bytes | March 10 2021 14:36:37. | |
rng.js | File | 246 bytes | March 10 2021 14:36:37. | |
sha1-browser.js | File | 2338 bytes | March 10 2021 14:36:37. | |
sha1.js | File | 579 bytes | March 10 2021 14:36:37. | |
v35.js | File | 1622 bytes | March 10 2021 14:36:37. |
// Unique ID creation requires a high quality random # generator. In the // browser this is a little complicated due to unknown quality of Math.random() // and inconsistent support for the `crypto` API. We do the best we can via // feature-detection // getRandomValues needs to be invoked in a context where "this" is a Crypto // implementation. Also, find the complete implementation of crypto on IE11. var getRandomValues = (typeof(crypto) != 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto)) || (typeof(msCrypto) != 'undefined' && typeof window.msCrypto.getRandomValues == 'function' && msCrypto.getRandomValues.bind(msCrypto)); if (getRandomValues) { // WHATWG crypto RNG - http://wiki.whatwg.org/wiki/Crypto var rnds8 = new Uint8Array(16); // eslint-disable-line no-undef module.exports = function whatwgRNG() { getRandomValues(rnds8); return rnds8; }; } else { // Math.random()-based (RNG) // // If all else fails, use Math.random(). It's fast, but is of unspecified // quality. var rnds = new Array(16); module.exports = function mathRNG() { for (var i = 0, r; i < 16; i++) { if ((i & 0x03) === 0) r = Math.random() * 0x100000000; rnds[i] = r >>> ((i & 0x03) << 3) & 0xff; } return rnds; }; }
SILENT KILLER Tool