C++ 中有没有非常简单的 RSA 实现?
是否有任何非常简单的跨平台 C++ 库可以进行非对称加密? 不需要高效,只要工作。我想它可能只是 .h 文件中的 3-4 个函数,它们可以执行任意精度的数学运算,仅此而已。
我相信在这里使用 OpenSSL 有点矫枉过正。
Are there any very simple cross-platform C++ libs which can do assymetric encription?
Not necessary efficient, just working. I imagine it could be just 3-4 functions in an .h file which do arbitrary precission math and that's it.
I belive using OpenSSL here is an overkill.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://cryptopp.com/ 看起来就是我所需要的。
人们可以将其分解为单独的文件,并且它包含 RSA 样本。
http://cryptopp.com/ looks to be what I need.
One might tear it down to individual files, and it has RSA samples.