我有一个使用RijndaelManaged密码的DecryptString函数。它工作99.999%的时间,但非常偶然的是,它抛出了一个"IndexOutOfRangeException“异常,消息是”索引超出了数组的界限“。当它尝试关闭finally块中的cryptoStream时。
当它停止工作时,它会停止工作20分钟左右,然后在没有明显解释的情况下重新开始工作。我确实有一个线索,那就是它只
public string DecryptString(string InputText, string Password)
{
//checkParamSupplied("InputText", InputText);
checkParamSupplied("Password", Password);
MemoryStream memoryStream = null;
CryptoStream cryptoStream = null;
try
{
RijndaelManaged RijndaelCipher = new RijndaelManaged();
byte[] EncryptedData = Convert.FromBase64String(InputText);
byte[] Salt = Encoding.ASCII.GetBytes(Password.Length.ToString());
PasswordDeriveBytes SecretKey = new PasswordDeriveBytes(Password, Salt);
// Create a decryptor from the existing SecretKey bytes.
ICryptoTransform Decryptor = RijndaelCipher.CreateDecryptor(SecretKey.GetBytes(32), SecretKey.GetBytes(16));
memoryStream = new MemoryStream(EncryptedData);
// Create a CryptoStream. (always use Read mode for decryption).
cryptoStream = new CryptoStream(memoryStream, Decryptor, CryptoStreamMode.Read);
// Since at this point we don't know what the size of decrypted data
// will be, allocate the buffer long enough to hold EncryptedData;
// DecryptedData is never longer than EncryptedData.
byte[] PlainText = new byte[EncryptedData.Length];
// Start decrypting.
int DecryptedCount = cryptoStream.Read(PlainText, 0, PlainText.Length);
// Convert decrypted data into a string.
string DecryptedData = Encoding.Unicode.GetString(PlainText, 0, DecryptedCount);
// Return decrypted string.
return DecryptedData;
}
catch (Exception ex)
{
throw;
}
finally
{
//Close both streams.
memoryStream.Close();
cryptoStream.Close();
}
}发布于 2012-01-12 18:24:13
我确实注意到的一件事是,在关闭finally块中的cryptoStream本身之前,您正在关闭密码流的底层流-也许您应该颠倒这两个语句?
https://stackoverflow.com/questions/8833157
复制相似问题