0.0.1 • Published 11 years ago

sha1-digest v0.0.1

Weekly downloads
9
License
-
Repository
github
Last release
11 years ago

sha1-digest

A simple, cross-platform streaming sha1 digest.

Usage is very simple and should work the same in both node.js and browser versions.

var sha1sum = require('sha1-digest')();

// Update accepts either binary objects or strings.
// The strings will be encoded as UTF8 bytes.
sha1sum.update("Hello ");
sha1sum.update("World\n");

var hex = sha1sum.digest();