If we can't decode the MD5 hash string, then what is the purpose of MD5 where can we use MD5.
feedback
|
|
To store data save in a database for example. If you save your password using md5 and you compaire it with the password you enter and encrypt it is still the same password but you cant see in the database what is the password. For example: password = 123 md5 of 123 = fkdjafkldjslghrioawegh if you try to log in and you enter 123 the md5 if it will still be the same and you can compair those. But if your database is hacked the hacker cant reed the password (123) | |||||||||
feedback
|
|
An decryptable file has the property that its always at least as big as the original file, a hash is much, much smaller. This allows us the create a hash from a file that can prove the integrity of the file, without storing it. There are many reasons not to store the file in encrypted or plain text:
| |||||||||||||||
feedback
|
| |||
|
feedback
|
|
Good hash functions like MD5 can be used for identification. See this question. Under certain conditions you can assume that equal hashes mean equal data blocks. | |||||||||||||||
feedback
|
|
MD5 is mainly used to maintain the integrity of files when it is send from 1 machine to another machine,to detect whether any man in middle third party have not modify the contents of files. Basic example is : When you download any file from server server has MD5 calculated when it comes to you it again check for md5 values if md5 hash matches file is not corrupted or not modified by any third person. | |||
|
feedback
|