如何在 Perl 中加密消息以在 C# 中解密?
我需要使用 Perl 加密并在 .Net (C#) 上解密。 即 Perl 加密文件,而我的 .Net 代码解密该文件(甚至可能验证完整性)。
问题是我对Perl的加密功能不熟悉。 任何人都可以提供关于如何最好地解决这个问题以及可能性是什么的指导吗?
提前致谢!
直流
I am needing to encrypt using Perl and decrypt on .Net (C#). i.e. Perl encrypts a file and my .Net code decrypts the file (and even maybe validates integrity).
The problem is that I am not familiar with the encryption capabilities of Perl. Can anyone offer guidance on how best to approach this and what the possibilities are?
Thanks in advance!
DC
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 Lars 所说,AES 可能是目前最好的选择。 有关 Perl 实现,请参阅 Crypt::Rijndael
As Lars said, AES is probably the best choice these days. For a Perl implementation, see Crypt::Rijndael
使用带有公共密钥的 AES 加密。
Perl
C#
Use AES encryption with a common secret key.
Perl
C#