public static string HEXStrNearTodayDecryptStringTripleDES(string strToDecrypt) { if (strToDecrypt == string.Empty) { return(string.Empty); } return(NearTodayDecryptStringTripleDES(TEXStrUtl.DecodeHexStrToStr(strToDecrypt))); }
public static string HEXStrDecryptHexStringTripleDES(string strToDecrypt, string theKey) { return(DecryptStringTripleDES(TEXStrUtl.DecodeHexStrToStr(strToDecrypt), theKey)); }