コード例 #1
0
 public static string MD5EncryptPassword(string password)
 {
     if (password == null)
     {
         throw new ArgumentNullException("password");
     }
     return(TextEncrypt.MD5EncryptPassword(password, MD5ResultMode.Strong));
 }
コード例 #2
0
 public static string EncryptPassword(string password)
 {
     if (password == null)
     {
         throw new ArgumentNullException("password");
     }
     return(TextEncrypt.MD5EncryptPassword(password));
 }
コード例 #3
0
ファイル: Utility.cs プロジェクト: bylu/baiyiWeb
 public static string MD5(string s)
 {
     return(TextEncrypt.MD5EncryptPassword(s));
 }