|
|
|
|
|
by kobalsky
1615 days ago
|
|
I wonder if adding a random salt for each account would help in that situation?. bcrypt(md5(password) + salt) + salt the problem with password shucking would be that they just do a bcrypt(md5) over the list of md5 hashes they have and check if they exist in your database. but if each hash is salted they would need to run every their complete md5 hash list through bcrypt for each account instead of once per database. |
|