.NET:RsaCryptoServiceProvider 中令人费解的加密异常
我在以下代码中收到加密异常,异常状态为:指定的无效标志
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没关系,问题的根源是我将其设置为大于 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).