public static string HEXStrNearTodayEncryptStringTripleDES(string strToEncrypt) { if (strToEncrypt == string.Empty) { return(string.Empty); } return(TEXStrUtl.EncodeToHexStr(NearTodayEncryptStringTripleDES(strToEncrypt))); }
public static string HEXStrEncryptStringTripleDES(string strToEncrypt, string theKey) { return(TEXStrUtl.EncodeToHexStr(EncryptStringTripleDES(strToEncrypt, theKey))); }