0.1.1 • Published 12 years ago

hashing-stream v0.1.1

Weekly downloads
10
License
-
Repository
github
Last release
12 years ago

hashing-stream Build Status

hashing-stream is a simple pass thru stream which hashes incoming data.

Installation

npm install hashing-stream

Usage

var HashingStream = require('hashing-stream').HashingStream;

fs.createReadStream('fillerama.txt')
  .pipe(new HashingStream('sha1'))
  .on('end', function (hash) {
    hash.digest('hex'); // => '65f3bd7e5bed93ebef9fb5338d9b9a19deb5c2d5'
  });