In C#, there's a method called VerifyHashedPassword(). This does not take a hashing algorithm. In T-SQL, there's a method HashBytes(), which does require that you pass the hashing algorithm.
I am updating a program, and I need to verify the user's password. I have the table of hashed passwords, but I do not know what algorithm was used, only that the C# code uses VerifyHashedPassword, which does not take an algorithm parameter.
What algorithm can I pass to HashBytes() which will match what VerifyHashedPassword uses?
Edit: It is obvious that the suggested question does not answer my question. It is difficult to understand why anyone would have thought that it did.