我可以使用 RSACryptoServiceProvider 公钥/私钥与 Crypto++ 进行互操作吗?
我使用 RSACryptoServiceProvider< 创建了公钥/私钥/a> 并将其保存为 XML。 我可以用它来加密/解密/签名并验证.NET 中的数据。
我有另一个应用程序打算在 Linux 服务器上运行。 我正在用 C++ 开发它,并使用 Crypto++ 来满足我的加密需求。
我想在这两个应用程序之间共享数据,但要做到这一点,我需要将 RSAParameters 转换为 Crypto++ 可以理解的公钥/私钥。
如果更容易的话,我也愿意使用将 Crypto++ 生成的公钥/私钥转换为 RSAParameters。
有任何想法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法可能是直接使用 RSAParameters,而不是通过 XML。
只需使用您自己选择的格式将 RSAParameters 中包含的字节数组存储在文件中即可。 在 C++ 程序中读回字节数组并创建 CryptoPP::Integer来自他们。 使用这些整数初始化 RSAFunction (公钥)或 InvertibleRSAFunction(私钥)。
相反的方法是类似的:即将
数组传输到您的.NET应用程序,您可以在其中使用它们来初始化RSA参数。
The easiest way is probably to use the RSAParameters directly instead of going over XML.
Just store the byte-arrays contained in the RSAParameters in a file using a format of your own choice. Read the byte-arrays back in your C++ program and create CryptoPP::Integers from them. Use those Integers to Initialize a RSAFunction (public key) or InvertibleRSAFunction (private key).
The reverse way is similiar: I.e.
and transfer the arrays to your .NET-application, where you can use them to initialize an RSAParameters.