JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 12342127
  • Score
    100M100P100Q212904F
  • License MIT

abstract base class for hash-streams

Package Exports

  • hash-base

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hash-base) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

hash-base

NPM Package Build Status Dependency status

js-standard-style

Abstract base class to inherit from if you want to create streams implementing the same API as node crypto Hash (for Cipher / Decipher check crypto-browserify/cipher-base).

Example

function MyHash () {
  HashBase.call(64) // in bytes
}

inherti(MyHash, HashBase)

MyHash.prototype._update = function () {
  // hashing one block with buffer this._block
}

MyHash.prototype._digest = function () {
  // create padding and produce result
}

You also can check source code or crypto-browserify/md5.js

LICENSE

MIT