I need to store a hash of a single password in a .Net WinForms application.
What\'s the most secure way to do this?
In particular:
RNGCryptoServiceProvider to generate a random salt, then SHA512 the password with the salt, and finally store both the password hash and the corresponding salt if you want to later verify that some text equals the stored password.