Wednesday, July 29, 2009

Password Encryption in C# + SHA1

public static string EncryptPassword(string Password)
{
return FormsAuthentication.HashPasswordForStoringInConfigFile(Password, "SHA1");
}

No comments:

Post a Comment