RSA 加密库或类
我想在我的应用程序中实现 RSA 加密/解密。我在网上搜索任何执行 RSA 加密/解密算法的库或类,但无法找到任何合适的链接。我知道我可以使用提供的 SecKeyGeneratePair由 Apple 生成私钥公钥对。但是我必须使用 RSA 算法,因为我想通过客户端-服务器网络实现它。因此该算法需要在各方之间通用。
请提供一些有价值的信息。
谢谢阿迪亚
I want to implement RSA encrytion/decryption in my App.I googled around the net to find any Library or Classes which perform the RSA encryption/decryption algorithm,but was not able to find any suitable link.I know i can use the SecKeyGeneratePair provided by Apple to generate the private public key pair.But it is a necessity for me to use the RSA algorithm as i want to implement it over client-server network.So the Algorithm needs to common amongst the parties.
Please provide some valuable info.
Thanks
Aditya
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是 SecKeyEncrypt 和 SecKeyDecrypt 函数的作用吗?
函数 SecKeyEncrypt 和 SecKeyDecrypt 使用您从 SecKeyGeneratePair 获取的 RSA 密钥。
Isn't that what
SecKeyEncrypt
andSecKeyDecrypt
functions do?The functions SecKeyEncrypt and SecKeyDecrypt uses the RSA keys you got from
SecKeyGeneratePair
.