Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Md5sum is used to check integrity of iso image of say ubuntu.How does it work?

share|improve this question
Most of the answers here explain how MD5 works, not how MD5Sum works. For instance, does it combine file size with every 1st bit of every bite in a file? Does it process straight through an entire file? I was interested in these things and I think the asker was also. Hashing can be done on many different things but how it's applied to files to produce a checksum is something different – Sprague Jul 1 '10 at 19:22

5 Answers

The algorithm Message Digest 5 or MD5, it is a one-way cryptographic hash function. MD5 performs many binary operations on the "message" (binary data, for example of an iso image) to compute a 128-bit "hash".

It is useful to check the integrity of a downloaded package such as ubuntu because generating the MD5 hash will be identical if the package is exactly the same as the authenticated source. If there are errors in the download (from network interference, etc.) or if you downloaded a malicious package that was made to look like ubuntu but contained other code/whatever, then the MD5 would not match and you would know something was different and you should download again from a different source.

share|improve this answer
2  
Just a little added tidbit: The MD5 algorithm (and indeed most cryptographic hash function algorithms) are constructed so that even one bit of difference between two inputs will cause a huge change in the hash function output. This property makes it very difficult to create two input messages that hash to the same output. – Mike Daniels Jun 15 '09 at 17:41
Thanks Mike. Just a little tidbit, said property is known as the "Waterfall Effect". – defines Jun 22 '09 at 22:00
Avalanche effect? – Tim Lehner Jul 27 '12 at 17:38

You can see the explanation right here

share|improve this answer

It works like every other cryptographic hash function

share|improve this answer

Take a look at the following RFC:

RFC1321 - The MD5 Message-Digest Algorithm

share|improve this answer

MD5Sum is a file checksum generating tool using MD5 as the hashing algorithm. It provides the user with a reasonable assurance that the file was untampered with.

In order to do this, the user will need to (via shell integration or manually) process their own MD5 hash and compare it to the hash provided by the uploader.

An MD5Sum hash won't assure you that the uploader who provided the checksum didn't fiddle with the file, to do that you should trust the source of the MD5 checksum (ie. get the checksum from Ubuntu instead of the download site providing the image).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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