Exemplo n.º 1
0
 public static string HEXStrNearTodayEncryptStringTripleDES(string strToEncrypt)
 {
     if (strToEncrypt == string.Empty)
     {
         return(string.Empty);
     }
     return(TEXStrUtl.EncodeToHexStr(NearTodayEncryptStringTripleDES(strToEncrypt)));
 }
Exemplo n.º 2
0
 public static string HEXStrEncryptStringTripleDES(string strToEncrypt, string theKey)
 {
     return(TEXStrUtl.EncodeToHexStr(EncryptStringTripleDES(strToEncrypt, theKey)));
 }