Aes 似乎无法在 Mono 上使用 128 位 FeedbackSize?
我想加密数据然后将其发送到服务器。这是我的代码。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论