[Solved] Unhashing a password or holding unhashed password C#


A central principle of a hash is that it is one way, as you have read. Since you want to be able to perform a two way conversion between your data and a secured version you need to use encryption, which is specifically designed to both encrypt and then later decrypt the data in question.

3

solved Unhashing a password or holding unhashed password C#