Package: wnpp
Severity: wishlist
Owner: Shirish Togarla <shirishtogarla...@gmail.com>
X-Debbugs-CC: debian-de...@lists.debian.org

* Package name    : node-hash-base
  Version         : 3.0.3
  Upstream Author : Kirill Fomichev <fana...@ya.ru> (
https://github.com/fanatid)
* URL             : https://github.com/crypto-browserify/hash-base
* License         : Expat
  Programming Lang: JavaScript
  Description     : abstract base class for hash-streams

 Abstract base class to inherit from if you want to create streams
 implementing the same API as node crypto Hash 1. For example
 function MyHash () {
  HashBase.call(64) // in bytes
 }
 inherits(MyHash, HashBase)
 MyHash.prototype._update = function () {
  // hashing one block with buffer this._block
 }
 MyHash.prototype._digest = function () {
  // create padding and produce result
 }

Reply via email to