예제 #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));
 }