vote up 12 vote down star
8

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.

flag

I didn't expect this to be so controversial heh – Greg Dec 8 '08 at 8:51
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

11 Answers

vote up 11 vote down check

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 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|flag
1  
It is less secure mathematically, and you'd be much better off using a sleep() than intentionally making a slow algorithm – Greg Dec 7 '08 at 21:50
3  
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
1  
@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
3  
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 at 18:07
2  
@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 at 21:50
show 10 more comments
vote up 0 vote down

I know this is kind of an old post but I can't seem to find a definitive answer to this question either. I'm no mathematician, but theoretically wouldn't using two different salts in the 2 different hashes result in a hash that would take twice as long to crack? I also pause my login scripts to slow down brute force attacks (just remember to limit your web server connections per IP or bye-bye apache).

example:

$hash = md5(SECONDARYSEED.$userid.md5(DEFAULTSEED.$userid.'zt!s94d#x'.$password));

sleep(3);

return $hash;

I always use a hard coded string (in case variables in memory are compromised somehow), something unique to the string i'm trying to encode (like a user_id), and two salts that are globally defined for the application. I feel pretty confident you won't find this in a rainbow table, but would it take twice as long to brute force like this?

link|flag
SO is not a forum. Only post an answer if it's truly an answer. To answer your question, double hashing will double the time it takes to calculate a hash, but the difference is usually not significant for security purposes (the exception being if the content of a message is extremely time sensitive, and a result in 5 hours (or 2 weeks) is useful but 10 hours (or 4 weeks) isn't). As for string constants, they will be stored in memory while a program is running. – outis Sep 25 at 18:27
vote up 0 vote down

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|flag
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
vote up 0 vote down

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|flag
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
vote up 9 vote down

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|flag
vote up -1 vote down

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|flag
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
vote up 1 vote down

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|flag
1  
Actually, it should be a string randomly generated for each user, not a constant. – Bill the Lizard Dec 7 '08 at 22:05
1  
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
1  
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
2  
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 at 21:27
show 2 more comments
vote up 1 vote down

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|flag
I mentioned this in another comment too, but en.wikipedia.org/wiki/Key_stretching – Willie Wheeler Dec 7 '08 at 22:43
vote up 0 vote down

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|flag
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
vote up 0 vote down

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|flag
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
I wouldn't say that it is any more feasable to create a database of Md5(md5(x)) than it is to do md5(x), and doing databases of md5(x) takes a little more than a while. – SoapBox Dec 7 '08 at 21:45
Google for "md5 database", put in your md5(text) string... voila, md5 cracked in a matter of seconds (if it's in the DB of course ;) – Greg Dec 7 '08 at 21:47
2  
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 2 more comments
vote up 7 vote down

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|flag
1  
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
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

Your Answer

Get an OpenID
or

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