I have created a login system, and have been told to hash and salt my passwords. Now, ive looked on google, msdn, SO, and found lots of stuff on hashing and salting, but dont seem to understand how to do it? I think I get the process:
You take the user created password and hash it This is written to the database, but at the same time You take the hash, and salt it with a RGN from security.cryptography, and add the salt to the database
Then to undo it, just repeat the process, right?