当前位置:  开发笔记 > 编程语言 > 正文

C#中的多线程加密

如何解决《C#中的多线程加密》经验,为你挑选了0个好方法。

我不熟悉加密,正在使用以下方法加密文件:

private static void encryptFile(string filePath, byte[] password, byte[] salt)
{
    Rfc2898DeriveBytes rdb = new Rfc2898DeriveBytes(password, salt, 1000);
    AesManaged algorithm = new AesManaged();

    byte[] rgbKey = rdb.GetBytes(algorithm.KeySize / 8);
    byte[] rgbIV = rdb.GetBytes(algorithm.BlockSize / 8);
    GCHandle keyHandle = GCHandle.Alloc(rgbKey, GCHandleType.Pinned);
    GCHandle IVHandle = GCHandle.Alloc(rgbIV, GCHandleType.Pinned);

    ICryptoTransform cryptoAlgorithm = algorithm.CreateEncryptor(rgbKey, rgbIV);

    using (FileStream readStream = File.Open(filePath, FileMode.Open))
    {
        using (FileStream writeStream = new FileStream(filePath + ".enc", FileMode.Create, FileAccess.Write))
        {
            using (CryptoStream cryptoStream = new CryptoStream(writeStream, cryptoAlgorithm, CryptoStreamMode.Write))
            {
                while (readStream.Position < readStream.Length)
                {
                    byte[] buffer = new byte[4096];
                    int amountRead = readStream.Read(buffer, 0, buffer.Length);
                    cryptoStream.Write(buffer, 0, amountRead);
                }
                cryptoStream.Flush();
            }
        }
    }

    UtilityMethods.destroyBytes(rgbKey);
    UtilityMethods.destroyBytes(rgbIV);
    keyHandle.Free();
    IVHandle.Free();
}

我想做的是多线程处理,以加快加密速度。使用单个线程,这花费了超过5分钟的时间来加密〜3GB的文件。我希望能够在1分钟内完成该加密(30秒以下的时间很棒,但我想我可能会继续进行)。

我相信答案是创建多个流(尽管我不确定),为每个流分配要加密的文件块,但是我不确定如何“拆分文件”为每个流分配块,或在每个部分通过分配给它的流之后“将文件放回一起”。有人可以指出我正确的方向吗?

非常感谢!

PS我已经看过(Rijndael算法和CryptoStream:是否可以加密/解密多线程?),但是我不明白答案(ECB,CBC?)。如果我的问题的答案在那里,您能否提供一些示例代码来使我朝正确的方向前进?

再次感谢!

推荐阅读
喜生-Da
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有