what is md5 thing on some site for downloads?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
phazorRise
Forum Contributor
Posts: 134
Joined: Mon Dec 27, 2010 7:58 am

what is md5 thing on some site for downloads?

Post by phazorRise »

I know md5 is hash algorithm !
So i've seen it on major websites like http://www.jquery.com while selecting a download.
what is that thing anyway? :?: Just curious !
masterblaster
Forum Newbie
Posts: 10
Joined: Mon Jul 25, 2011 11:33 am

Re: what is md5 thing on some site for downloads?

Post by masterblaster »

It is a thing called checksum, in order to know if your file has been altered after download. Sometimes, files are corrupted or altered, whether intentionally or not, even if the file has the same name and size in bytes. So, to know if it has been altered, you can do MD5 checksum on it and see if matches the one posted on the web.

Besides from MD5, there are a lot of other algorithms like SHA1, SHA256 (more secure), because it can happen that after modifying a file it still has the same checksum.

There are a lot of programs that can calculate the MD5SUM for you.
Post Reply