Sha256: cbea95f8c2a366ff78f38995d0869c9b1c36491a2bd0963d6b24736f21be46ff

Contents?: true

Size: 576 Bytes

Versions: 71

Compression:

Stored size: 576 Bytes

Contents

'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;

Version data entries

71 entries across 62 versions & 16 rubygems

Version Path
decidim-0.25.2 packages/core/node_modules/uuid/lib/md5.js
disco_app-0.15.2 test/dummy/node_modules/uuid/lib/md5.js
disco_app-0.15.2 test/dummy/node_modules/sockjs/node_modules/uuid/lib/md5.js
decidim-0.25.1 packages/core/node_modules/uuid/lib/md5.js
disco_app-0.18.4 test/dummy/node_modules/sockjs/node_modules/uuid/lib/md5.js
disco_app-0.18.4 test/dummy/node_modules/uuid/lib/md5.js
disco_app-0.18.1 test/dummy/node_modules/uuid/lib/md5.js
disco_app-0.18.1 test/dummy/node_modules/sockjs/node_modules/uuid/lib/md5.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/uuid/lib/md5.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/sockjs/node_modules/uuid/lib/md5.js
disco_app-0.14.0 test/dummy/node_modules/sockjs/node_modules/uuid/lib/md5.js
disco_app-0.14.0 test/dummy/node_modules/uuid/lib/md5.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/sockjs/node_modules/uuid/lib/md5.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/uuid/lib/md5.js
decidim-0.25.0 packages/core/node_modules/uuid/lib/md5.js
decidim-0.25.0.rc4 packages/core/node_modules/uuid/lib/md5.js
decidim-0.25.0.rc3 packages/core/node_modules/uuid/lib/md5.js
decidim-0.25.0.rc2 packages/core/node_modules/uuid/lib/md5.js
tang-0.2.1 spec/tang_app/node_modules/uuid/lib/md5.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/uuid/lib/md5.js