我有:RSA 密钥、指数、明文。我想要:密文。应该是2行Obj-C吧?

发布于 2024-09-16 16:42:55 字数 108 浏览 4 评论 0原文

正如标题所说。使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

再见回来 2024-09-23 16:42:55

不幸的是,在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文