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