Possible Duplicate:
What is the optimal length for user password salt?
What size should I use in a CreateSalt class?
private static string CreateSalt(int size)
Possible Duplicate:
What is the optimal length for user password salt?
What size should I use in a CreateSalt class?
private static string CreateSalt(int size)
Having just done this exact same thing this week, I decided on an byte[8] salt generated by the RNGCryptoServiceProvider class in .Net 4.
Seemed to be a decent size to avoid collisions with other salts.
Si