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();
--
Alan - @bigeasy
Probably not. The hash functions in Node are backed by OpenSSL which
doesn't have a notion of serializable digests.