Google News
logo
PHP - Interview Questions
What is difference between md5 and SHA256?
Both MD5 and SHA256 are used as hashing algorithms. They take an input file and generate an output which can be of 256/128-bit size. This output represents a checksum or hash value. As, collisions are very rare between hash values, so no encryption takes place.
 
* The difference between MD5 and SHA256 is that the former takes less time to calculate than later one.
* SHA256 is difficult to handle than MD5 because of its size.
* SHA256 is less secure than MD5
* MD5 result in an output of 128 bits whereas SHA256 result output of 256 bits.

Concluding all points, it will be better to use MDA5 if you want to secure your files otherwise you can use SHA256.
Advertisement