Reputation: 3793
We have a customer that wants us to enforce a rule that when a user changes their password it is at least 75% different from the previous password.
Right now our passwords are stored with one-way hashes. We don't want to change that, because it would weaken our password security.
But if we can't get the original password, how can we determine whether the new one is 75% different?
Upvotes: 1
Views: 58
Reputation: 48287
Ask for the old password when changing the password (you should probably be doing this anyways). Now you have the old password in server memory
Upvotes: 1