我们有一个Java客户端向我们发送一些加密数据 1.随机字符串使用RSA和公钥加密,我们将它们脱机提供。 2.使用步骤1中生成的密钥,使用alg_tripleDES_CBC = http://www.w3.org/2001/04/xmlenc#tripledes-cbc
加密数据我能够像第一步一样解密密钥......这是有效的。
public static string DecryptKey(string encryptedKey)
{
X509Certificate2 cert = new X509Certificate2("c:\\test.pfx", "test");
RSACryptoServiceProvider privateKeyProvider = (RSACryptoServiceProvider)cert.PrivateKey;
string decryptedKey = System.Text.Encoding.UTF8.GetString(privateKeyProvider.Decrypt(Convert.FromBase64String(encryptedKey), false));
return decryptedKey;
}
我有这段代码使用第一步生成的密钥解密数据。
public static string DecryptString(string Message, string Passphrase)
{
byte[] Results;
System.Text.UTF8Encoding UTF8 = new System.Text.UTF8Encoding();
MD5CryptoServiceProvider HashProvider = new MD5CryptoServiceProvider();
byte[] TDESKey = HashProvider.ComputeHash(UTF8.GetBytes(Passphrase));
TripleDESCryptoServiceProvider TDESAlgorithm = new TripleDESCryptoServiceProvider();
TDESAlgorithm.Key = TDESKey;
TDESAlgorithm.Mode = CipherMode.ECB;
TDESAlgorithm.Padding = PaddingMode.PKCS7;
byte[] DataToDecrypt = Convert.FromBase64String(Message);
try
{
ICryptoTransform Decryptor = TDESAlgorithm.CreateDecryptor();
Results = Decryptor.TransformFinalBlock(DataToDecrypt, 0, DataToDecrypt.Length);
}
finally
{
TDESAlgorithm.Clear();
HashProvider.Clear();
}
return UTF8.GetString(Results);
}
第二步因此异常而失败。
System.Security.Cryptography.CryptographicException: Bad Data.
at System.Security.Cryptography.CryptographicException.ThrowCryptographicException(Int32 hr)
at System.Security.Cryptography.Utils._DecryptData(SafeKeyHandle hKey, Byte[] data, Int32 ib, Int32 cb, Byte[]& outputBuffer, Int32 outputOffset, PaddingMode PaddingMode, Boolean fDone)
at System.Security.Cryptography.CryptoAPITransform.TransformFinalBlock(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount)
at ConsoleApplication3.Program.DecryptString(String Message, String Passphrase) in C:\Documents and Settings\rjaladi\Desktop\ConsoleApplication3\ConsoleApplication3\Program.cs:line 66
at ConsoleApplication3.Program.Main(String[] args) in C:\Documents and Settings\rjaladi\Desktop\ConsoleApplication3\ConsoleApplication3\Program.cs:line 22
我需要与客户核实的是什么?我知道我们传递给TDES的参数有问题。有什么帮助吗?
编辑:加密消息的相应Java代码。
public String encryptText(String plainText) throws Exception{
byte[] plaintext = plainText.getBytes();
byte[] tdesKeyData = key;
byte[] myIV = initializationVector;
Cipher c3des = Cipher.getInstance(""DESede/CBC/NoPadding"");
SecretKeySpec myKey = new SecretKeySpec(tdesKeyData, "DESede");
IvParameterSpec ivspec = new IvParameterSpec(myIV);
c3des.init(Cipher.ENCRYPT_MODE, myKey, ivspec);
byte[] cipherText = c3des.doFinal(plaintext);
sun.misc.BASE64Encoder obj64=new sun.misc.BASE64Encoder();
return obj64.encode(cipherText);
}
答案 0 :(得分:2)
可能会失败:
TDESAlgorithm.Mode = CipherMode.ECB;
如果您使用CBC加密Java,则应使用CBC密码模式。并且不推荐使用ECB,因为它有一些安全漏洞。
答案 1 :(得分:1)
_DecryptData(...)
引发了您的异常,我注意到它包含PaddingMode
参数。将检查最后一个块末尾的填充,如果找到不正确的填充,则会抛出错误。我建议您检查发送数据的人,看看他们使用的填充模式。解密时需要使用相同的填充模式。
正如@klartrex所说,你不应该使用ECB模式,它会泄漏信息;请参阅here了解(字面)插图。如果您可以说服另一端这样做,请使用CBC或CTR模式。