Sha256: 7de88abd31451a9d3efddfcd32863f2416c5aaab4ebcd755ed8280b2308ba018

Contents?: true

Size: 579 Bytes

Versions: 71

Compression:

Stored size: 579 Bytes

Contents

'use strict';

var crypto = require('crypto');

function sha1(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('sha1').update(bytes).digest();
}

module.exports = sha1;

Version data entries

71 entries across 62 versions & 16 rubygems

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