Re: [nodejs] Resumable MD5 Hash Algorithm

2012-03-04 Thread Alan Gutierrez
I would be very interested in seeing resumable hashes and CRCs in the core API. Is this something that could happen? -- Alan - @bigeasy On Feb 14, 2012, at 3:46 AM, Rong Shen wrote: I've resoved this by using SparkMD5 (https://github.com/satazor/ SparkMD5) , and use the psedo-code below:

Re: [nodejs] Resumable MD5 Hash Algorithm

2012-03-04 Thread Ben Noordhuis
2012/3/4 Alan Gutierrez a...@prettyrobots.com: I would be very interested in seeing resumable hashes and CRCs in the core API. Is this something that could happen? Probably not. The hash functions in Node are backed by OpenSSL which doesn't have a notion of serializable digests. -- Job

Re: [nodejs] Resumable MD5 Hash Algorithm

2012-02-12 Thread Ben Noordhuis
On Sun, Feb 12, 2012 at 08:28, Rong Shen rong.s...@gmail.com 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?