我使用相同的初始化向量和相同的密钥进行加密和解密。但是我收到错误说" Padding无效且无法删除"在Web应用程序中,我正在加密数据并将加密数据保存在sql server table列(nvarchar(max))中。我有Windows服务,它读取加密数据并解密。有人可以告诉我我在哪里做错了。
public byte[] Encrypt(string clearText, string key, byte[] initialisationVector, int blockSizeInBits)
{//hidden logic
rijndaelManaged.Mode = CipherMode.CBC;
rijndaelManaged.Padding = PaddingMode.PKCS7;
//hidden logic
return memoryStream.ToArray();
}
像这样打电话
Dim encryptionKey As String = ConfigurationManager.AppSettings("Key")
' Arrange - need 32 byte IV for 256-bit
Dim cryptographer3 As ICryptographer = New Cryptographer()
Dim initialisationVector3 As Byte() = {&H26, &HDC, &HFF, &H0, &HAD, &HED, _
&H7A, &HEE, &HC5, &HFE, &H7, &HAF, _
&H4D, &H8, &H22, &H3C, &H26, &HDC, _
&HFF, &H0, &HAD, &HED, &H7A, &HEE, _
&HC5, &HFE, &H7, &HAF, &H4D, &H8, _
&H22, &H3C}
' Act
Dim encryptedString As Byte() = cryptographer3.Encrypt(strForEncryption, encryptionKey, initialisationVector3, 256)
'Dim decrypt3 As String = cryptographer3.Decrypt(encryptedString, Key, initialisationVector3, 256)
Return System.Text.Encoding.Unicode.GetString(encryptedString)
解密方法
public string Decrypt(byte[] cipherText, string key, byte[] initialisationVector, int blockSizeInBits)
{
//hidden logic
rijndaelManaged.Mode = CipherMode.CBC;
rijndaelManaged.Padding = PaddingMode.PKCS7;
//hidden logic
}
像这样打电话
if (encryptedIdentificationValue.Trim().Length > 0)
{
string decryptionKey = ConfigurationManager.AppSettings["Key"];
// Arrange - need 32 byte IV for 256-bit
ICryptographer cryptographer3 = new Cryptographer();
byte[] initialisationVector3 =
{
0x26, 0xdc, 0xff, 0x0, 0xad, 0xed,
0x7a, 0xee, 0xc5, 0xfe, 0x7, 0xaf,
0x4d, 0x8, 0x22, 0x3c, 0x26, 0xdc,
0xff, 0x0, 0xad, 0xed, 0x7a, 0xee,
0xc5, 0xfe, 0x7, 0xaf, 0x4d, 0x8,
0x22, 0x3c
};
return cryptographer3.Decrypt(encryptedIdentificationValue, decryptionKey, initialisationVector3, 256);
}
答案 0 :(得分:1)
"填充无效"消息可能意味着许多不同的事情仅填充可能是一个问题,或者整个加密可能存在问题,包括填充。您可以采取一些措施来诊断问题。
将解密方法设置为不需要填充。
解密消息。因为你,你不会得到填充错误 没有检查。
查看解密的邮件。如果它一直是垃圾, 然后你的问题不是填充,而是加密或 解密,通常是解密。检查你的钥匙和IV 字节的字节相同。如果消息没问题,还有一些额外的消息 最后的字符,然后检查那些额外的字符是否匹配 您对PKCS7填充的期望是什么。
诊断出问题后,必须设置解密 方法回到PKCS7填充。