C# - Storing user password for comparison
问题 I am storing user logon encrypted passwords in a database (SQL Server). Because of an API restriction, the passwords need to be encrypted on the C# end of things, so I can't use the database's built-in encryption. what is the fastest/easiest way to encrypt these passwords so I can compare them to what the user would have typed in to a third-party service later? I am new to C# and I understand that passwords should never be in plain text so that's why I want to make sure I have the highest