Solutionunvalidated
Take the inputted password, throw it in a loop that adds adds an extra character at the end, beginning, wherever, and then match it against the stored hash. — You would need to kind of brute force it, I think. Tension: how do systems enforce the not being similar test without having to store the passwords in plain text in the database?
4d24e61a-01fb-4f52-8bf4-232cb01d4c78
Take the inputted password, throw it in a loop that adds adds an extra character at the end, beginning, wherever, and then match it against the stored hash. — You would need to kind of brute force it, I think. Tension: how do systems enforce the not being similar test without having to store the passwords in plain text in the database?