public static string MD5EncryptPassword(string password) { if (password == null) { throw new ArgumentNullException("password"); } return(TextEncrypt.MD5EncryptPassword(password, MD5ResultMode.Strong)); }
public static string EncryptPassword(string password) { if (password == null) { throw new ArgumentNullException("password"); } return(TextEncrypt.MD5EncryptPassword(password)); }
public static string MD5(string s) { return(TextEncrypt.MD5EncryptPassword(s)); }