Say I have 'n' number of files, for each of which I have CRC32, MD5 and SHA1 digests
Now these 'n' number of files are actually split files/archives of single large file.
When these smaller files are recombined/joined into the larger file, we can compute the digest of this larger file too.
My question is : Is there a way to verify whether the combination of the digests of these smaller files equal the digest of the large file?
For example, say I have a file split into 4 parts with digests 0xDE, 0xAD, 0xBE, 0xEF
Say, after joining, the larger file has digest 0xC0
Is there any way to verify that join(0xDE, 0xAD, 0xBE, 0xEF) == 0xC0, where 'join' is the magical operation/formula/algorthm I am looking for?