Is there any way to solve this?
My code:
public string DecryptTripleDES(string CypherText, string key)
{
byte[] inputBuffer = Convert.FromBase64String(CypherText);
return Encoding.Unicode.GetString(PCIDSS.CreateDES(key).CreateDecryptor().TransformFinalBlock(inputBuffer,0, inputBuffer.Length));
}
Amit KumarPosted Jul 26, 2019, 12:02 AM