Unhashing a password or holding unhashed password C#
问题 BACKGROUND I am making a personal password vault. I will be the only one that uses it and maintains it. I am doing it to practice cryptography as a personal project. WHAT WORKS I have a login page which is linked to a "Users" table in the database that stores my username and a password that has been salted and hashed. I have the method that will check what I type in the password field against the hashed/salted password within the database and that all works fine so I can log in successfully.