up vote 46 down vote favorite
29
share [g+] share [fb]

Is hashing a password twice before storage any more or less secure than just hashing it once?

What I'm talking about is doing this:

$hashed_password = md5( md5( plaintext_password ) );

instead of just this:

$hashed_password = md5( plaintext_password );

If it is less secure, can you provide a good explanation (or a link to one)?

Also, does the hash function used make a difference? Does it make any difference if you mix md5 and sha1 (for example) instead of repeating the same hash function?

Note 1: When I say "double hashing" I'm talking about hashing a password twice in an attempt to make it more obscured. I'm not talking about the technique for resolving collisions.

Note 2: I know I need to add a random salt to really make it secure. The question is whether hashing twice with the same algorithm helps or hurts the hash.

link|improve this question

1  
I didn't expect this to be so controversial heh – Greg Dec 8 '08 at 8:51
1  
No, I didn't either. I thought there would be one authoritative answer. Guess I'll have to do more research. :) – Bill the Lizard Dec 8 '08 at 13:01
feedback

13 Answers

up vote 43 down vote accepted

No, multiple hashes are not less secure, they are an essential part of good security.

When hashing a password, use a few thousand iterations of the hash function. This increases the time it takes for an attacker to try each password in their list of candidates. The time it takes to brute force a password is changed from hours to years.

Using "salt" is also essential to prevent a pre-computed dictionary attack.

Here are other answers I've written on this topic:

Also read PKCS #5 for authoritative information on the role of salt and iterations in hashing. Even though PBKDF2 was meant for generating keys from passwords, it works well as a one-way-hash for password storage.


Can anyone offer some proof or even a citation that shows that there are collisions in MD5 over the input range 0–2128 - 1? I'm honestly curious about this. I'm not mathematically equipped to figure this out, but since MD5 only maintains 128 bits of internal state, if it can really produce 2128 different outputs, it seems that there would be no collisions when feeding back its output.

In any case, you have to consider security in the context of a threat model. One scenario where stored passwords need protection is when subjected to an offline attack. If passwords aren't salted, they can be broken with a dictionary attack. If they are, the attacker falls back to a brute force attack.

This is where arguments about theoretical weakness due to collisions in feedback (which no one here has demonstrated exist) fall apart. All passwords are not equally likely. Attackers have a list of likely passwords and their permutations. They don't start by systematically generating every possible password string, so it really doesn't matter that that space is infinite. They start with "password123" and progress to less frequently used passwords. Let's say their list is large: 10 billion candidates. Let's say that a desktop system can compute 1 million MD5s per second. In less than three hours, they can check their whole list if only one iteration is used.

Now suppose that 2000 iterations are used. Now it takes 8 months to check their list.

PBKDF2, a key derivation function, offers sufficient security for many applications today. However, bcrypt was developed to make the "hashing" time tunable; to make it take a long time, even in the face of increasing computational power.

link|improve this answer
15  
Intentionally making a slow algorithm is an accepted practice when you're trying to prevent dictionary attacks against compromised authentication stores. The technique is called "key strengthening" or "key stretching". See en.wikipedia.org/wiki/Key_stretching – Willie Wheeler Dec 7 '08 at 22:40
3  
@RoBorg: it doesn't matter how slow your implementation is, but how slow an attacker's implementation will be: if the hash itself is thousands of times slower, it will take an attacker thousands of times as long to brute-force the password. – orip Dec 7 '08 at 23:53
4  
Arguably you would want collisions within the 128-bit space 0 through 2^128-1. If the hash algorithm's 2^128 output space is perfect, then theoretically, you just have a substitution cipher with an alphabet of 2^128 glyphs. – jmucchiello Mar 5 '09 at 18:07
4  
@devin -- it's not "my solution", it's a widely accepted practice, built into password-based cryptography standards like PKCS #5, and recommended by experts like Robert Morris. It's extremely scalable, as the fraction of time spent authenticating users is small in a legitimate application. It only becomes difficult to scale when your application is cracking passwords—hence the recommendation. Certainly, the search space of a hash is smaller than that of possible passwords, but even a 128-bit space is too huge to brute-force search. The threat to defend against is an offline dictionary attack. – erickson May 6 '09 at 21:50
3  
I was referring not to the inconvenience to the individual user, but rather the stress that would be put upon the server if you had a large user base, because you are relying on the CPU load to slow down the number of requests. It means that if you add more CPU power, you are reducing the restriction on those brute force attackers. -- However, you are completely correct about the scalability, and the widely accepted practice. I was wrong about almost all the things I said in my earlier comments. Sorry :) – DevinB May 6 '09 at 23:54
show 11 more comments
feedback

Yes, re-hashing reduces the search space, but no, it doesn't matter - the effective reduction is insignificant.

Re-hashing increases the time it takes to brute-force, but doing so only twice is also suboptimal.

What you really want is to hash the password with PBKDF2 - a proven method of using a secure hash with salt and iterations. Check out this SO response.

EDIT: I almost forgot - DON'T USE MD5!!!! Use a modern cryptographic hash such as the SHA-2 family (SHA-256, SHA-384, and SHA-512).

link|improve this answer
feedback

Yes - it reduces the number of possibly strings that match the string.

As you have already mentioned, salted hashes are much better.

An article here: http://websecurity.ro/blog/2007/11/02/md5md5-vs-md5/, attempts a proof at why it is equivalent, but I'm not sure with the logic. Partly they assume that there isn't software available to analyse md5(md5(text)), but obviously it's fairly trivial to produce the rainbow tables.

I'm still sticking with my answer that there are smaller number of md5(md5(text)) type hashes than md5(text) hashes, increasing the chance of collision (even if still to an unlikely probability) and reducing the search space.

link|improve this answer
2  
This is incorrect. And the cited link (which isn't authoritative anyway), finishes by saying that multiple rounds is safer--if you want to take advice from "luca" in Romania who heard from a friend that multiple rounds isn't as good. Read Applied Cryptography, or PKCS#5. – erickson Dec 7 '08 at 21:59
I didn't say that I thought that the link was authoritative, rather that it says the opposite to what I would think. I'm not an expert on this subject, my post is just my gut reaction to the question. – Rich Bradshaw Dec 7 '08 at 22:18
Ah, I was misreading your post. Yes, it is conceivable that all 2^128 hash outputs are not produced with inputs from 0 to 2^128 - 1, which would reduce the space. However, since MD5 only uses 128 bits of internal state, my gut reaction is to say that each 128 bit input yields a unique output. – erickson Dec 7 '08 at 23:30
1  
Technically correct but cryptographically insignificant, therefore incorrect. Don't forget that the easiest vector of attack on password-based cryptography isn't the derived key, it's the password itself. – orip Dec 7 '08 at 23:51
Thanks for the link. I understand it's not authoritative, but it gives me a good starting point. – Bill the Lizard Dec 8 '08 at 13:02
feedback

Personally I wouldn't bother with multiple hashses, but I'd make sure to also hash the UserName (or another User ID field) as well as the password so two users with the same password won't end up with the same hash. Also I'd probably throw some other constant string into the input string too for good measure.

$hashed_password = md5( "xxx" + "|" + user_name + "|" + plaintext_password);
link|improve this answer
4  
Actually, it should be a string randomly generated for each user, not a constant. – Bill the Lizard Dec 7 '08 at 22:05
2  
A constant secret works (and is easier to work with), if you throw in the username as suggested. That essentially produces a random user-specific key. – SquareCog Dec 8 '08 at 0:46
3  
A constant secret salt is security through obscurity. If the "secret" gets out that you're using "xxx" + username + password, then an attacker doesn't even need data from your tables to launch an attack against it. – Bill the Lizard Dec 8 '08 at 13:11
3  
I don't think that it's security through obscurity. The reason for using a salt is that you can't compute a rainbow table against multiple md5 hashes simultaneously. Building one for "xxx"+password (same salt) happens once. Building a table for "xxx"+username+password is worse than brute forcing. – FryGuy Dec 13 '08 at 2:19
1  
@Bill the Lizard: "the attack is reduced to building one dictionary to attack a specific username" is just a brute-force attack (actually even worse, because in addition to computing all hashes you have to store them), so the salt works perfectly in this case. – porneL Jul 30 '09 at 21:27
show 3 more comments
feedback

Ancient question, but still pops up on Google, so I'll throw in my 2c.

I just look at this from a practical standpoint. What is the hacker after? Why, the combination of characters that, when put through the hash function, generates the desired hash.

You are only saving the last hash, therefore, the hacker only has to bruteforce one hash. Assuming you have roughly the same odds of stumbling across the desired hash with each bruteforce step, the number of hashes is irrelevant. You could do a million hash iterations, and it would not increase or reduce security one bit, since at the end of the line there's still only one hash to break, and the odds of breaking it are the same as any hash.

Maybe the previous posters think that the input is relevant; it's not. As long as whatever you put into the hash function generates the desired hash, it will get you through, correct input or incorrect input.

Now, rainbow tables are another story. Since a rainbow table only carries raw passwords, hashing twice may be a good security measure, since a rainbow table that contains every hash of every hash would be too large.

Of course, I'm only considering the example the OP gave, where it's just a plain-text password being hashed. If you include the username or a salt in the hash, it's a different story; hashing twice is entirely unnecessary, since the rainbow table would already be too large to be practical and contain the right hash.

Anyway, not a security expert here, but that's just what I've figured from my experience.

link|improve this answer
feedback

I won't go over the problems with md5 and not using salts, as these have already been addressed.

I think one fundamental point has been overlooked md5(md5("text")) the inner md5 produces a hash of 32 characters in length, in fact it does not matter what "text" is it will always be 32 characters in length, no more, no less. so you could easily create a rainbow table of every combination of 32 alpha-numeric characters and look it up which would allow you to get back to the inner md5 easily no matter how may md5's within md5's there are all of those would be in the rainbow table.

Now this doesn't help you solve the final layer md5("text") as it could be any length, but if you were trying to break this, you could break every other level using 1 rainbow table then as soon as you get to the layer it does not work, switch to your second set of rainbow tables with most likely characters.

It will cause extra delay breaking the hash if you are breaking every layer before, but not significantly more to say it makes it more secure as if there is no salt in between the layers the hacker will know that the layer is in his hash table and will eventually break it. Hashes make it more secure, good password policies make it more secure, using an algorithm which has not been cracked makes it more secure. Double hashing, triple hashing, quadruple hashing makes no greater challenge to someone determined to break the hash.

And anyone who's response is that this would take too long, the list would be huge, etc. I point you to the ZDNet Article isong Amazon Clustered Cloud computing to crack hashes.

link|improve this answer
feedback

In general, it provides no additional security to double hash or double encrypt something. If you can break the hash once, you can break it again. It usually doesn't hurt security to do this, though.

In your example of using MD5, as you probably know there are some collision issues. "Double Hashing" doesn't really help protect against this, since the same collisions will still result in the same first hash, which you can then MD5 again to get the second hash.

This does protect against dictionary attacks, like those "reverse MD5-databases", but so does salting.

On a tangent, Double encrypting something doesn't provide any additional security because all it does is result in a different key which is a combination of the two keys actually used. So the effort to find the "key" is not doubled because two keys do not actually need to be found. This isn't true for hashing, because the result of the hash is not usually the same length as the original input.

link|improve this answer
1  
All correct, but I just want to note that the effect of the strong collision resistance compromise on MD5 is blown a bit out of proportion -- most scenarios that use crypto hash functions do not rely on strong collision resistance, just weak resistance. They are not affected by this vulnerability. – SquareCog Dec 7 '08 at 22:01
feedback

From what I've read, it may actually be recommended to re-hash the password hundreds or thousands of times.

The idea is that if you can make it take more time to encode the password, it's more work for an attacker to run through many guesses to crack the password. That seems to be the advantage to re-hashing -- not that it's more cryptographically secure, but it simply takes longer to generate a dictionary attack.

Of course computers get faster all the time, so this advantage diminishes over time (or requires you to increase the iterations).

link|improve this answer
I mentioned this in another comment too, but en.wikipedia.org/wiki/Key_stretching – Willie Wheeler Dec 7 '08 at 22:43
feedback

As several responses in this article suggest, there are some cases where it may improves security and others where it definately hurts it. There is a better solution that will definately improve security. Instead of doubling the number of times you calculate the hash, double the size of your salt, or double the number of bits used int the hash, or do both! Instead of SHA-245, jump up to SHA-512.

link|improve this answer
This doesn't answer the question. – Bill the Lizard Dec 10 '08 at 13:13
Double hashing is not worth the effort, but doubling your hash size is. I think this is a more valuable point. – Stefan Rusek Dec 12 '08 at 15:49
feedback

The concern about reducing the search space is mathematically correct, although the search space remains large enough that for all practical purposes (assuming you use salts), at 2^128. However, since we are talking about passwords, the number of possible 16-character strings (alphanumeric, caps matter, a few symbols thrown in) is roughly 2^98, according to my back-of-the-envelope calculations. So the perceived decrease in the search space is not really relevant.

Aside from that, there really is no difference, cryptographically speaking.

Although there is a crypto primitive called a "hash chain" -- a technique that allows you to do some cool tricks, like disclosing a signature key after it's been used, without sacrificing the integrity of the system -- given minimal time synchronization, this allows you to cleanly sidestep the problem of initial key distribution. Basically, you precompute a large set of hashes of hashes - h(h(h(h....(h(k))...))) , use the nth value to sign, after a set interval, you send out the key, and sign it using key (n-1). The recepients can now verify that you sent all the previous messages, and no one can fake your signature since the time period for which it is valid has passed.

Re-hashing hundreds of thousands of times like Bill suggests is just a waste of your cpu.. use a longer key if you are concerned about people breaking 128 bits.

link|improve this answer
Re-hashing is precisely about slowing down the hash. This is a key security feature in password-based cryptography. See the links for PCKS5 and PBKDF2. – orip Dec 8 '08 at 7:14
feedback

Let us assume you use the hashing algorithm: compute rot13, take the first 10 characters. If you do that twice (or even 2000 times) it is possible to make a function that is faster, but which gives the same result (namely just take the first 10 chars).

Likewise it may be possible to make a faster function that gives the same output as a repeated hashing function. So your choice of hashing function is very important: as with the rot13 example it is not given that repeated hashing will improve security. If there is no research saying that the algorithm is designed for recursive use, then it is safer to assume that it will not give you added protection.

That said: For all but the simplest hashing functions it will most likely take cryptography experts to compute the faster functions, so if you are guarding against attackers that do not have access to cryptography experts it is probably safer in practice to use a repeated hashing function.

link|improve this answer
feedback

I'm going to go out on a limb and say it's more secure in certain circumstances... don't downvote me yet though!

From a mathematical / cryptographical point of view, it's less secure, for reasons that I'm sure someone else will give you a clearer explanation of than I could.

However, there exist large databases of MD5 hashes, which are more likely to contain the "password" text than the MD5 of it. So by double-hashing you're reducing the effectiveness of those databases.

Of course, if you use a salt then this advantage goes away.

link|improve this answer
1  
But it's quite straightforward to generate a database of md5(md5(text)) data, it just takes awhile. – Rich Bradshaw Dec 7 '08 at 21:42
Yeah, the point is that the databases of md5(text) already exist – Greg Dec 7 '08 at 21:44
1  
Yes, but is it more secure other than the fact that noone is producing databases? Surely if there was an advantage to md5(md5(text)) then that would already be part of the md5 algorithm. – Rich Bradshaw Dec 7 '08 at 21:58
1  
No, as a matter of fact it's less secure. The absence of a DB is the only advantage. – Greg Dec 7 '08 at 22:00
3  
Can we just agree to put in big letters on every post "assuming you are using a secret salt", and stop having to talk about rainbow tables? – SquareCog Dec 7 '08 at 22:18
show 1 more comment
feedback

Double hashing is ugly because it's more than likely an attacker has built a table to come up with most hashes. Better is to salt your hashes, and mix hashes together. There are also new schemas to "sign" hashes (basically salting), but in a more secure manner.

link|improve this answer
Tables of common passwords and dictionary words (and their hashes) certainly exist, but I question whether tables with hashes of hashes exist. Salting is certainly better, as I mentioned in the question. – Bill the Lizard Dec 8 '08 at 13:14
feedback

Your Answer

 
or
required, but never shown

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