security - Is there a built in function to hash passwords in .NET? -
I saw this question
and I know that I do not have MD5 ("salt" + password) should do) ; And I look at an implementation in Python for a solution.
Is there a .NET built in functions with a parameter, can I use instead of writing my own?
checkout
string hashMD5 = FormsAuthentication.HashPasswordForStoringInConfigFile (pass + Salt, "MD5"); String hashsha 1 = form attestation. Hashpswordforstoring configuration file (pass + salt, "SHA1");
Comments
Post a Comment