SILENT KILLERPanel

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 ]

Files and Folders in: //lib/node_modules/npm/node_modules/uuid/lib

NameTypeSizeLast ModifiedActions
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.

Reading File: //lib/node_modules/npm/node_modules/uuid/lib/md5.js

'use strict';

var crypto = require('crypto');

function md5(bytes) {
  if (typeof Buffer.from === 'function') {
    // Modern Buffer API
    if (Array.isArray(bytes)) {
      bytes = Buffer.from(bytes);
    } else if (typeof bytes === 'string') {
      bytes = Buffer.from(bytes, 'utf8');
    }
  } else {
    // Pre-v4 Buffer API
    if (Array.isArray(bytes)) {
      bytes = new Buffer(bytes);
    } else if (typeof bytes === 'string') {
      bytes = new Buffer(bytes, 'utf8');
    }
  }

  return crypto.createHash('md5').update(bytes).digest();
}

module.exports = md5;

SILENT KILLER Tool