vote up 5 vote down star
3

Any salt at all will obviously help when salting and hashing a user's password. Are there any best practices for how long the salt should be? I'll be storing the salt in my user table, so I would like the best tradeoff between storage size and security. Is a random 10 character salt enough? Or do I need something longer?

flag

43% accept rate

5 Answers

vote up 7 vote down

Currently accepted standards for hashing passwords create a new 16 character long salt for every passwort and store the salt with the password hash.

Of course proper cryptographic care to create really random salt should be taken.

link|flag
vote up 5 vote down

I don't have a recommendation about the length of the salt, but the answers that are showing up here have a lot of bad information. Your salt should definitely:

  • be random
  • be per secret (not a single value stored in your program image or configuration file).

The salt is not a cryptographic secret, so storing it in your table is no problem. The only purpose of a salt is to ensure that when different instances of the same item are hashed (or encrypted) that you get a different result.

link|flag
vote up 2 vote down

Honestly, there's no defensible reason not to have the salt be the same exact length as the hashed password. If you're using SHA-256, then you have a 256-bit hash. There's no reason not to use a 256-bit salt.

More than 256 bits won't net you any improvement in security, mathematically. But going with a shorter salt may always end up with a situation where a rainbow table catches up to your salt length -- especially with shorter salts.

link|flag
vote up 1 vote down

I don't know if there's an industry standard, but I would recommend at least 10 characters of which a few are strange symbols (and I mean extra strange, like ¤, ©, or ¦)

EDIT: I understand the arguments for embedding in the code vs storing in the database. Embed it in the code and you can't find it if you steal the database. BUT, the problem with embedding the salt in the code, is that you're able to produce a rainbow table for the entire user database if you steal the code. I would probably go for both.

link|flag
Please don't ever think of it in terms of characters. Hashing algorithms don't. Just generate a completely random set of bits. If you have a 256-bit salt, generate 256 random bits. Done. – Stephen Touset Sep 9 at 15:28
vote up 0 vote down

For those who don't know what salt is: Salt (cryptography) on Wikipedia

link|flag
This should have been done as an edit to the question, linking to salt. – Rob Sep 8 at 19:01
Okay, I edited the question and added the link. – David Sep 9 at 20:43

Your Answer

Get an OpenID
or

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