When you're hashing a password (or anything else) in PHP, does it make any difference if you use SHA or MD5?
|
2
|
|||||||||||
|
|
|
Yeah, SHA and MD5 are different algorithms. SHA is considered more secure than MD5. And it doesn't matter if you are talking about the implementation of the algorithms that is distributed with PHP or any implementation. They produce the same result (md5 in php produces the same result as md5 in any other language). |
||||
|
|
|
If you're comparing alternatives, you might also want to investigate the relatively new hash functions in PHP - it comes with a range of alternative hashes, if your server supports them. The function hash_algos will return a list of all hash algorithms your server supports. |
||
|
|
|
|
There are attacks on parts of MD5 and SHA-1. NIST recommends that for new systems the developers should be using SHA256. |
||||||||
|
|
|
MD5 and SHA1 are different hashing algorithms. MD5 "compresses" any stream of bytes into a 128 bit value. SHA1 compresses any stream of bytes into a 160 bit value. This compression only goes one way. If you give the hash of a random stream of bytes to someone , there is no theoretical way for them to go back to original stream of bytes. This is because of the pigeonhole principle. You can not fit infinity into 128 bits. The MD5 algorithm is slightly cheaper to compute, however MD5 is currently very vulnerable to collision attacks. Similarly SHA1 will be very vulnerable to collision attacks in a few years since there are now some attacks in 2^52. This means that TODAY someone with enough money could create SHA1 collisions. For some uses MD5 and SHA1 are perfectly fineSay for example you were looking for duplicate files in a file system. One (slightly inefficient way) would be to calculate a MD5 hash for every file in the file system. If you find 2 duplicate MD5 hashs, you have a duplicate file. This is a fact because there are no MD5 collisions in the wild, they have to be painstakingly generated. For some uses MD5 and SHA1 are very bad hash functions to use.(keep in mind that real world cases where collision attacks are bad are very elaborate). Say you are writing an email-signing-service that works like this:
If you were using MD5 someone malicious could generate two messages GOOD and EVIL, give you the good one to look up and later on pretend that you saw the EVIL message. To overcome this, you could use a private salt or a stronger hashing function like SHA256. SHA2 based hashing functions are available for PHP. Keep in mind MD5 and SHA1 are not even theoretically vulnerable to preimage attacks. For some uses any hashing function by itself is a very bad idea.Take, for example, password storage in the DB:
If I was a bank I would go with approach 4. If I was a website I would go with approach 3. Keep in mind that in this password example you could |
||||||||
|
|
|
SHA is more secure than MD5, but I wouldn't recommend either for hashing passwords anymore. Here's a list of cryptographic hash functions. You should use the most secure one you can get an implementation of in PHP. |
||||||
|
|
|
Both do essentially the same thing in different ways. For password storage, either will work well, and you'll probably never notice the difference. What's more important for that kind of application is to use some salt besides the hashing algorithm. For all the gory details, see: |
||
|
|
|
|
The algorithm that is used to compute the hash is different. I prefer to use SHA when hashing. Also note that there are two groups of SHA hashes - SHA-1 and SHA-2. |
||||||
|
|
|
MD5 and SHA are both different algorithms, where MD5 is the weaker of the two. In fact, there's some relatively easy methods that allow people to reverse engineer a password that works for a specific MD5 hash using Rainbow tables, but that can be negated using the salt method that's mentioned in the same link. Ofcourse the same can be used with an SHA hash for even more security. |
||
|
|
|
|
md5 generates a 32 chars hash, SHA1 a 40 chars hash... no matter what method you choose, i recommend to use a salt anyway |
||||
|
|
|
While SHA-1 and MD5 are "broken", the "attack" isn't actually an attack. Except with MD5. Security expert Schneier explains for us that all the vulnerability is the ability to generate two sets of data that collide. What does this mean to us? This means that you can figure out how to make two bits of data that will collide, but that's all you know. Because it would take an extremely long time to attack this way, it won't be used. Do not alternate methods because it increases collisions (the problem) and hash once with a dynamic salt for the greatest security. MD5 is unwise to be used because it has been cracked, not just broken. This means data obscured by MD5 is unsafe and could be reproduced. However, SHA-1 still is perfectly safe to use for password storage. You should never store your passwords like In summary, the safest scheme for password storage (in general) is Again, SHA-1 is "broken" but is not a risk yet; it will only be a risk when they can take the hash and regenerate the data on a whim. |
||||||||
|
|
|
Yes, there's a difference. MD5 was broken and is no longer secure. Use sha1 with a big hash size (for example: sha-512). Also use a different salt for each hash. NEVER USE MD5 FOR PASSWORDS!!!. Also se the blog entry on md5 and rainbow tables from coding horror. |
|||
|
