to add onto @martijnPieter's answer the minimal change can be implemented by doing a short brute force based on the new and previous passwords (which you both have available)

for example you can iterate over all passwords with a hamming distance of 1 or 2 from the new password and see if it matches an old pass

but you might want to note that this can reduce the confidence of users that you are hashing passwords (as you are essentially saying you can get a previous password back to reject a new password)

 

相关文章:

  • 2022-12-23
  • 2021-10-09
  • 2022-02-17
  • 2021-09-01
  • 2021-11-20
  • 2022-12-23
  • 2021-06-06
猜你喜欢
  • 2022-01-09
  • 2022-02-17
  • 2022-12-23
  • 2021-08-18
  • 2022-02-17
  • 2021-12-12
  • 2022-02-22
相关资源
相似解决方案