/// <summary> /// 解密 /// </summary> /// <param name="str"></param> /// <returns></returns> public static string DecrypString(string str) { if (string.IsNullOrEmpty(str)) { return(string.Empty); } TripleDes l = new TripleDes(); return(l.Decode(str)); }