vote up 0 vote down star

I am looking for a checksum algorithm where for a large block of data the checksum is equal to the sum of checksums from all the smaller component blocks. Most of what I have found is from RFCs 1624/1141 which do provide this functionality. Does anyone have any experience with these checksumming techniques or a similar one?

flag

57% accept rate
Does it need to specifically be equal to the arithmetic sum of the checksums of the smaller blocks, or do you just more generally want to be able to calculate the checksum of the large block from the checksums of the smaller blocks? – John Kugelman Jul 23 at 18:08

1 Answer

vote up 1 vote down check

I have only used Adler/Fletcher checksums which work as you describe.

There is a nice comparison of crypto++ hash/checksum implementations here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.