.NET:RsaCryptoServiceProvider 中令人费解的加密异常

发布于 2024-11-29 21:50:23 字数 290 浏览 1 评论 0原文

我在以下代码中收到加密异常,异常状态为:指定的无效标志

RSACryptoServiceProvider rsa = new RSACryptoServiceProvider((int)strength);
rsa.Encrypt(new byte[] { 0, 1, 2, 3, 4, 5, 7 }, false); // forcing the key to generate

我尝试设置 cspParameters 但没有区别。 我认为只有当我设置较大的位大小时才会发生这种情况。 (力量值)

I get a cryptographic exception in the following code, and the exception states: invalid flags specified

RSACryptoServiceProvider rsa = new RSACryptoServiceProvider((int)strength);
rsa.Encrypt(new byte[] { 0, 1, 2, 3, 4, 5, 7 }, false); // forcing the key to generate

I have tried to set cspParameters but there is no difference.
I think it only happens when I set a large bitsize. (strength value)

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

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

发布评论

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

评论(1

南烟 2024-12-06 21:50:23

没关系,问题的根源是我将其设置为大于 16384 的值。(这是点网中 RSA 的最大位大小)。

Never mind, the source of the problem was that I set it to a value larger than 16384. (which is the max bitsize for RSA in dot net).

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