On Sun, Feb 12, 2012 at 08:28, Rong Shen <[email protected]> wrote:
> I'm working on a resumable file upload program with Node.js.
> For the identity checking of the uploaded file, I'm looking for a MD5
> Hash Algorithm that could work in a resumable way.
You mean the built-in createHash() function?
var h = crypto.createHash('md5');
h.update(data);
h.update(moreData);
h.update(yetMoreData);
var d = h.digest();
--
Job Board: http://jobs.nodejs.org/
Posting guidelines:
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en