无法访问已关闭的文件错误

时间:2014-06-24 00:22:02

标签: c# encryption

我收到错误"无法访问已关闭的文件"尝试反序列化为XML时。 我有一个加密的文件。我解密该文件,并在我收到此错误时尝试反序列化它。 没有加密和解密,它工作正常。

XmlSerializer xmlSerializer = new XmlSerializer(typeof(Models.Test));
var fileLocStream = FileManipultions.DecryptToStream(fileLoc);
var testResult = (Models.Test)xmlSerializer.Deserialize(FileManipultions.DecryptToStream(fileLoc));


 public static Stream DecryptToStream(string inputFilePath)
        {
            try
            {
                string EncryptionKey = ConfigurationManager.AppSettings["EncDesKey"].ToString();
                CryptoStream cs;
                using (Aes encryptor = Aes.Create())
                {
                    Rfc2898DeriveBytes pdb = new Rfc2898DeriveBytes(EncryptionKey, new byte[] { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64, 0x76, 0x65, 0x64, 0x65, 0x76 });
                    encryptor.Key = pdb.GetBytes(32);
                    encryptor.IV = pdb.GetBytes(16);

                    using (FileStream fsInput = new FileStream(inputFilePath, FileMode.Open))
                    {
                        cs = new CryptoStream(fsInput, encryptor.CreateDecryptor(), CryptoStreamMode.Read);
                    }
                }
                return cs;
            }
            catch (Exception ex)
            {
                Logger.LogException(ex.Message, System.Reflection.MethodBase.GetCurrentMethod().ToString());
                return null;
            }
        }

1 个答案:

答案 0 :(得分:2)

在方法退出之前,您正在关闭fsInput(因此也就是cs)。当方法的调用者获得流时,它被关闭。移动在using内使用cs流的代码,用于FileStream。

或者,去除DecryptToStream()中的所有using语句,并使您的类实现IDisposable,以便在使用Stream完成时清理。