Good afternoon Overflowers! ;)
What I want to do:
I'm interested in verifying transferred file integrity.
How I approached it:
I was considering using a hash code for this but there's one problem. The files can be extremely large so I need to be able to iteratively generate the hash. I can't load the entire file into memory.
What I've looked at so far:
I'm investigating murmur3 and skein for the hash function. I believe I understand how to make it work with skein but the version I've built fails all the known result unit tests. I'm not sure how to "chain" murmur to get a valid result.
Any suggestions?