hash-base

abstract base class for hash-streams

MIT 15 个版本
安装
npm install hash-base
yarn add hash-base
pnpm add hash-base
bun add hash-base
README

hash-base

npm Package Build Status Dependency status

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

const HashBase = require('hash-base');
const inherits = require('inherits');

// our hash function is XOR sum of all bytes
function MyHash () {
	HashBase.call(this, 1); // in bytes

	this._sum = 0x00;
};

inherits(MyHash, HashBase)

MyHash.prototype._update = function () {
	for (let i = 0; i < this._block.length; ++i) {
		this._sum ^= this._block[i];
	}
};

MyHash.prototype._digest = function () {
	return this._sum;
};

const data = Buffer.from([0x00, 0x42, 0x01]);
const hash = new MyHash().update(data).digest();
console.log(hash); // => 67

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

LICENSE

MIT

版本列表
3.1.2 2025-09-23
3.1.1 2025-09-22
3.1.0 2020-05-01
3.0.5 2024-11-24
3.0.4 2017-05-24
3.0.3 2016-08-28
3.0.2 2016-08-25
3.0.1 2016-08-09
3.0.0 2016-05-04
2.0.2 2016-04-17
2.0.1 2016-04-14
2.0.0 2016-04-07
1.0.2 2016-04-04
1.0.1 2016-04-04
1.0.0 2016-04-03