Exemplo n.º 1
0
 /// <summary>
 /// DES数据解密
 /// </summary>
 /// <param name="targetValue"></param>
 /// <param name="key"></param>
 /// <returns></returns>
 private static string Decrypt(string targetValue, string key)
 {
     return(SecretUtil.DesDecrypt(targetValue, key));
 }