1

我正在尝试加密字符串,将其保存在文件中,然后从文件中读取字符串并解密。但是当我运行代码时,我只是得到“要解密的数据长度无效”错误:/通过调试,我发现字节数组(数组^字节)由于某种原因在我尝试时长度为 12解密字符串,当我加密字符串时它的长度为8。

这是加密字符串的代码:

String^ EncryptS(){
String^ DecryptedS;
MD5CryptoServiceProvider^ md5Crypt = gcnew MD5CryptoServiceProvider();
UTF8Encoding^ utf8Crypt = gcnew UTF8Encoding();
TripleDESCryptoServiceProvider^ crypt = gcnew TripleDESCryptoServiceProvider();
crypt->Key = md5Crypt->ComputeHash(utf8Crypt->GetBytes("123"));
crypt->Mode = CipherMode::ECB;
crypt->Padding = PaddingMode::PKCS7;
ICryptoTransform^ transCrypt = crypt->CreateEncryptor();    
DecryptedS = utf8Crypt->GetString(transCrypt->TransformFinalBlock(utf8Crypt->GetBytes(form1::passwordTextBox->Text), 0, utf8Crypt->GetBytes(form1::passwordTextBox->Text)->Length));
return DecryptedS; }

这是解密字符串的代码

String^ decryptS(String^ encryptedS){
String^ decryptedS;
array<Byte>^ bytes;
MD5CryptoServiceProvider^ md5Crypt = gcnew MD5CryptoServiceProvider();
UTF8Encoding^ utf8Crypt = gcnew UTF8Encoding();
UTF8Encoding^ utf8ToByte = gcnew UTF8Encoding();
TripleDESCryptoServiceProvider^ crypt = gcnew TripleDESCryptoServiceProvider();
crypt->Key = md5Crypt->ComputeHash(utf8Crypt->GetBytes("123"));
crypt->Mode = CipherMode::ECB;
crypt->Padding = PaddingMode::PKCS7;
ICryptoTransform^ transCrypt = crypt->CreateDecryptor();
bytes = utf8ToByte->GetBytes(encryptedS);
return decryptedS = utf8Crypt->GetString(transCrypt->TransformFinalBlock(bytes, 0, bytes->Length)); }

我一直试图在几个小时内解决这个问题,但没有成功,非常感谢您的帮助:)

对不起,我的英语不好。

4

1 回答 1

4

您正在尝试使用 UTF-8 将任意字节数组转换为字符串。这就像尝试加载一些随机文本文件,就好像它是 JPEG 一样,并期望它是有效的图像。

Encoding.GetString(byte[])当字节数组确实是使用该编码的文本编码时才应使用。

如果您想表示“任意”二进制数据(通常是压缩或加密数据),您应该使用 base64 或十六进制,具体取决于您的要求。(Convert.ToBase64String并且Convert.FromBase64String是你的朋友。)

于 2012-06-14T20:17:21.417 回答