Re: incremental MD5 ?



MD5 does not do encryption.

To permit incremental modifications to data, you might consider
a Merkle hash tree. That permits incremental block-replacement
with O(lg n) work.

My guess is that you probably want a MAC, not a hash. You can make
those incremental, too. Do a web search for incremental cryptography
and you should find a bunch of papers.
.