Dict.CN

MD5

public static string  MD5(string str)
{
    return FormsAuthentication.HashPasswordForStoringInConfigFile(str, "MD5").ToString();

}

 public static bool VerifyMD5(string str, string md5str)
{
    return MD5(str).Equals(md5str);
}

需要引入命名空间

 using System.Text.RegularExpressions;

posted on 2007-07-30 14:29  standas  阅读(324)  评论(0编辑  收藏  举报