|
|
|
|
|
by tptacek
5477 days ago
|
|
The purpose of a salt is to randomize the password hashes so you can't easily precompute them. A "salt" derived from the password itself isn't random; it's deterministic. Salts don't add much security, but they do defeat precomputation. The scheme your coworker proposed doesn't do that. |
|
But if you don't mind a follow-up, wouldn't it still defeat rainbow tables? Why not?