Aes 似乎无法在 Mono 上使用 128 位 FeedbackSize?

发布于 2025-01-10 01:53:44 字数 407 浏览 2 评论 0原文

我想加密数据然后将其发送到服务器。这是我的代码。

var aes = Aes.Create();
aes.Mode = CipherMode.CFB;
aes.FeedbackSize = 128;
aes.Key = Encoding.UTF8.GetBytes(key);
aes.IV = Encoding.UTF8.GetBytes(iv);
_encryptor = aes.CreateEncryptor();

我在 .net 6 上的控制台应用程序中调试了它,效果很好。但是当我将它迁移到xamarin项目时,它无法工作。 CreateEncryptor方法抛出异常,表示FeedbackSize不能超过64位。看来aes在mono上的实现不支持128位FeedbackSize。 我应该怎么办?

I want to encrypt data and then send it to the server. Here is my code.

var aes = Aes.Create();
aes.Mode = CipherMode.CFB;
aes.FeedbackSize = 128;
aes.Key = Encoding.UTF8.GetBytes(key);
aes.IV = Encoding.UTF8.GetBytes(iv);
_encryptor = aes.CreateEncryptor();

I debugged it in a console app on .net 6, It worked well. But when I migrate it to the xamarin project, it cannot work. CreateEncryptor method thrown an Exception, it said FeedbackSize cannot be more than 64 bits. It seems that the implement of aes on mono does not support 128bits FeedbackSize.
What should I do?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文