出现错误:“指定的块大小对此算法无效”初始化 AesCryptoProvider 时

发布于 2025-01-05 18:46:09 字数 850 浏览 0 评论 0原文

我尝试使用更大的块大小进行 AES 加密:

private static void EncryptFile(string inFile, RSACryptoServiceProvider rsaPublicKey)
{
    using (AesCryptoServiceProvider aes = new AesCryptoServiceProvider())
    {
        // Create instance of AesManaged for
        // symetric encryption of the data.
        aes.KeySize = 256;

        // Allocating 64K
        aes.BlockSize = 8 * 1024 * 64; 
    }
}

并遇到以下异常:

System.Security.Cryptography.CryptographyException 未处理
消息=指定的块大小对此算法无效。
来源=mscorlib StackTrace: 在 System.Security.Cryptography.SymmetricAlgorithm.set_BlockSize(Int32 价值) 在 ConsoleApplication4.Program.EncryptFile(String inFile, RSACryptoServiceProvider rsaPublicKey) 中 C:\Projects\ConsoleApplication4\Program.cs:第 117 行

我肯定错过了一些明显的东西,有什么线索吗?

I am trying to use larger block size for the AES Encryption:

private static void EncryptFile(string inFile, RSACryptoServiceProvider rsaPublicKey)
{
    using (AesCryptoServiceProvider aes = new AesCryptoServiceProvider())
    {
        // Create instance of AesManaged for
        // symetric encryption of the data.
        aes.KeySize = 256;

        // Allocating 64K
        aes.BlockSize = 8 * 1024 * 64; 
    }
}

and hitting the following exception:

System.Security.Cryptography.CryptographicException was unhandled
Message=Specified block size is not valid for this algorithm.
Source=mscorlib StackTrace:
at System.Security.Cryptography.SymmetricAlgorithm.set_BlockSize(Int32
value)
at ConsoleApplication4.Program.EncryptFile(String inFile, RSACryptoServiceProvider rsaPublicKey) in
C:\Projects\ConsoleApplication4\Program.cs:line 117

I sure am missing somehting ovbious, any clue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回忆躺在深渊里 2025-01-12 18:46:09

AES 似乎仅支持等于 128 的块大小。看来您可以通过将数据处理为多个块来解决此问题。

来源

It appears that AES only supports block size equal to 128. It appears that you can get around this by processing your data as multiple blocks.

source

执着的年纪 2025-01-12 18:46:09

每种算法仅支持特定的块大小。

请参阅 SymmetricAlgorithm.LegalBlockSizes

Only certain block sizes are supported by each algorithm.

See SymmetricAlgorithm.LegalBlockSizes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文