我有:RSA 密钥、指数、明文。我想要:密文。应该是2行Obj-C吧?
正如标题所说。使用 iPhone SDK,我想使用服务器提供的现有密钥和指数对一些(小)明文进行 RSA 加密以进行身份验证。这肯定是一项简单的任务,需要一个库导入和几行代码?如果没有,为什么不呢?
As the title says. Using the iPhone SDK, I want to RSA encrypt some (small) plaintext using an existing key and exponent I am given from a server for authentication. Surely this is a trivial task that requires one library import and a couple of lines of code? If not, why not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,在 iPhone 上使用 RSA 密钥的唯一方法是将它们导入到 KeyChain 中。如果您不介意使用第三方库,那么您可以绕过这个。例如,通过使用 OpenSSL 中的 libcrypto。
Unfortunately the only way to work with RSA keys on the iPhone is by importing them in the KeyChain. If you don't mind to use a third-party library then you can go around this. For example by using libcrypto from OpenSSL.