vote up 5 vote down star
2

When you're hashing a password (or anything else) in PHP, does it make any difference if you use SHA or MD5?

flag

Whatever answer you choose as correct, make sure it references the need for salt. As it stands, the answer marked correct is far from complete. – Sam Saffron May 4 at 2:10
The question is not how best to protect passwords, it's the difference between MD5 and SHA. – Toytown Mafia May 4 at 20:47
@Toytown, you should reword your question not to include the password example. Hashing passwords is a very loaded topic. – Sam Saffron May 5 at 2:09
That's why I wrote "(or anything else)". I think it's clear that the question is very straightforward. – Toytown Mafia May 5 at 9:38
Ok I get it, read my answer, the answer marked correct is far from complete or correct. – Sam Saffron May 6 at 23:59

11 Answers

vote up 11 vote down check

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).

link|flag
1  
SHA1 is not considered more secure, SHA2XX is considered more secure ehash.iaik.tugraz.at/wiki/The_Hash_Function_Zoo/… – Sam Saffron May 8 at 8:19
vote up 3 vote down

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 fine

Say 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:

  1. User sends you an email
  2. You read the email
  3. You hash the message and store the hash in your database.
  4. Anyone can interrogate a public API on you site that takes as an input a body of text and returns a boolean that says weather you have seen this message before or not. The way that works is that you hash the message and compare it to the list of hashs in your db.

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:

  1. If you store your passwords in plain text, if someone gets your db they have all your passwords.
  2. If you store sha256(password) in the db, someone could use a rainbow table to get your passwords.
  3. If you store sha256(password + random 128 bit salt) and 128 salt in your db, someone get at your passwords either with brute-force or dictionary attack.
  4. If you store sha256(password + random 128 bit salt) in the DB. And store that random salt in a place that hackers can not get to ever. If some one gets your DB they will not be able to recover the passwords (not with brute force or with anything)

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

link|flag
-1 for the random salt. Given that both password (the hash) and the salt are stored in the database, your plan is immediately vulnerable to a dictionary attack. They just need to access the DB and you are compromised. You are better off without random data, and with an algorithm that hashes parts of the user's required profile together with the password. Unless they get at your filesystem too, there's little chance they'll know just what you're hashing. – The Wicked Flea May 4 at 15:38
-1 for what? not understanding the concept. A dictionary attack is a pain compared to a rainbow table attack, but sure, if you have some way to store your salt outside of the DB, go for it. Read this: it got a +15 stackoverflow.com/questions/420843/… – Sam Saffron May 4 at 22:13
What do you mean by a place that the hackers can never get? When you need to check that someone has entered the correct password, you need the salt to make sure they've done so. But if you can access the salt from such a place, why can't hackers? I suppose you could store and compute everything on a separate, tamper-proof card, but then you might as well store the password database there as well. – Brian Campbell May 7 at 13:21
You have a good point there Brian, I think maybe we should put a seperate question out there on how a bank should store its password. Im thinking something along opends.org/milestone1/page/… should do the trick – Sam Saffron May 8 at 0:24
vote up 0 vote down

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 sha1('my password') in the database, however, and a static salt is only good so long as it isn't known (either by file-level access or by breaking into your settings table in the database).

In summary, the safest scheme for password storage (in general) is sha1($password . $username), which will return a 40 digit destructive hash of this. To brute-force this would require O(n*m) tries, where n is the number of words (in your dictionary) and m is the number of users.

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.

link|flag
-1 there is no magical way of decompressing an MD5 hash into content. any mechanism for doing so will rely on having the hash and the content prior to the fact. – Sam Saffron May 4 at 1:41
Never said there was a magical method to do this, did I? Your nitpick doesn't remove the truth that MD5 is insecure, given that a 1.6GHz system will compute a collision with UNRELATED (and significant) DATA within 8 hours ... and that only clock cycles are needed now. – The Wicked Flea May 4 at 15:32
-1 for on my question for what? not understanding the concept. A dictionary attack is a pain compared to a rainbow table attack, but sure, if you have some way to store your salt outside of the DB, go for it. Read this: it got a +15 stackoverflow.com/questions/420843/… – Sam Saffron May 4 at 22:14
You say: "This means data obscured by MD5 is unsafe and could be reproduced.", this is wrong, if it was true MD5 would be the best compression algorithm known to man. MD5 is vulnerable to collision attack. Meaning its very easy to find to hash Y and X that have the same hash. MD5 is not vulnerable to pre-image attacks ... read about it here: en.wikipedia.org/wiki/Preimage_attack – Sam Saffron May 4 at 22:18
vote up 1 vote down

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:

link|flag
vote up 1 vote down

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.

link|flag
-1 MD5 + SALT is perfectly secure, how are you proposing a birthday attack could subvert this? – Sam Saffron May 4 at 1:49
@sambo99: Neither I, nor the question mention either salt or a birthday attack. Why wouldn't you chose the stronger hash when it's readily available? – Bill the Lizard May 4 at 2:02
@Bill, there will always be a stronger hash function readily available, the thing is that without Salt ALL the hash functions have a serious flaw (rainbow tables) when it comes to hashing passwords. If the chance of me getting an MD5 collision is 1 / all the grains of sand in the world, its good enough for me. Using the stronger hashing function in this scenario will only protect you against birthday attacks. Meaning someone could create a malicious password Y that has the same hash as password X (provided they control the salt, which they don't) – Sam Saffron May 4 at 4:10
vote up 3 vote down

There are attacks on parts of MD5 and SHA-1. NIST recommends that for new systems the developers should be using SHA256.

link|flag
256 is for the weak. 512 is where it's at. :P – Thomas Owens Oct 1 '08 at 14:59
Real men use /dev/random ! – macbirdie Oct 3 '08 at 20:07
1  
I thought real men used butterflies? (xkcd.com/378) – Kris Oct 20 '08 at 22:53
vote up -3 vote down

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.

link|flag
MD5 was not "broken". Rather, it was found that MD5 hashes collide more often and that they contain less entropy than previously thought. It's hardly "broken". And not using MD5 won't save you from a Rainbow table attack. That's why you always salt your hashes. – Bob Somers Oct 1 '08 at 20:22
vote up 0 vote down

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.

link|flag
vote up 0 vote down

md5 generates a 32 chars hash, SHA1 a 40 chars hash... no matter what method you choose, i recommend to use a salt anyway

link|flag
Not correct at all, not even if you substitute "byte" for "bit". MD5 generates a 128-bit (16-byte) hash. SHA-1 produces a 160-bit (20-byte) hash. Though they are often represented in hexadecimal, in which case the size required is twice the number of bytes. – Elias Yarrkov Oct 1 '08 at 15:01
i'm sorry... typed a litte bit to fast ;) i meant chars instead of bytes/bits – Jochen Hilgers Oct 1 '08 at 15:11
vote up 3 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
Why do you prefer SHA over MD5? – vIceBerg Oct 1 '08 at 14:50
SHA-2, anyway, has less (known) collisions. I use SHA-512 for the critical stuff and 128 or 256 for everything else. – Thomas Owens Oct 1 '08 at 14:52
MD5 has known weaknesses. So does SHA-1, but they seem to be much harder to exploit. – Mihai Limbasan Oct 1 '08 at 14:52

Your Answer

Get an OpenID
or

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