Since questions about salting hashes come along on a quite regular basis and there seems to be quite some confusion about the subject, I extended this answer.
What is a salt?
A salt is a random set of bytes of a fixed length that is added to the input of a hash algorithm.
Why is salting (or seeding) a hash useful?
Adding a random salt to a hash ensures that the same password will produce many different hashes. The salt is usually stored in the database, together with the result of the hash function.
Salting a hash is good for a number of reasons:
- Salting greatly increases the difficulty/cost of precomputated attacks (including rainbow tables)
- Salting makes sure that the same password does not result in the same hash.
This makes sure you cannot determine if two users have the same password. And, even more important, you cannot determine if the same person uses the same password across different systems.
Salting increases the complexity of passwords, thereby greatly decreasing the effectiveness of both Dictionary- and Birthday attacks. (This is only true if the salt is stored separate from the hash.)
There is no need for the salt to be secret.
A salt is not a secret key, instead a salt 'works' by increasing the amount of computational power required to break the hash.
If the attacker knows the salt, the increased complexity created by adding the salt stays the same.
The salt must be random for every instance in which it is used. This ensures that an attacker has to attack every salted hash separately.
If you rely on your salt (or salting algorithm) being secret, you enter the realms of Security Through Obscurity (won't work).
So, why does the salt have to be random?
In cryptography, predictability usually equals lessened security. The whole point of the salt is to make sure that the hash values are different for every hashed password, across all systems.
If, for example, you use a evenly distributed random 16-bit salt, the attacker would need a rainbow table for all 2^16 possible salts (good).
If the salt is predictable, the attacker 'only' needs to compute a rainbow for the predicted salts, thereby considerably decreasing the amount of time needed to create the rainbow table (not good).
if the salt is predictable and common, the situation gets ugly:
- If you use for example the userId, attackers would only need to create a rainbow table for the userIds 1 to 50 and have a very good chance of getting a high value account. (really bad)
- If the salt is for example the username, the attacker would only need a rainbow table for salts like 'root' and 'admin' (really really bad).
It's not about preventing the attacker from knowing what an individual salt is, it's about not giving them the big, fat target that will be used on a substantial number of potential targets.
In conclusion:
Use a random, evenly distributed, high entropy salt.
Usefull sources:
stackoverflow.com: Non-random salt for password hashes
Bruce Schneier: Practical Cryptography (book)
Matasano Security: Enough with the Rainbow Tables
usenix.org: Unix crypt used salt since 1976
owasp.org: Why add salt
openwall.com: Salts
Disclaimer:
I'm not a security expert.
If any of the security professionals out there find something wrong, please do comment.