iPhone开发:提取SSL证书信息

发布于 2024-08-12 10:17:49 字数 157 浏览 5 评论 0原文

我正在开发一个应用程序,我想在应用程序和服务器之间设置安全通道。 我想从服务器上的SSL证书中提取CA和算法等信息。我该如何实现这一目标?可以使用 NSUrlConnection、CFNetwork 来完成还是我必须使用 BSD 套接字自己开发很多东西?有一些我可以使用的开源库吗?代码示例表示赞赏!

I'm developing an app where I want to setup a secure channel between my app and a server.
I want to extract information like CA and algorithm from the SSL certificate on the server. How do I achieve that? Can it be done with NSUrlConnection, CFNetwork or do I have to develop a whole lot myself with BSD sockets? Is there some open source library I can use perhaps? Code examples are appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

爱给你人给你 2024-08-19 10:17:49

没有内置的方法来检查该信息。如果证书无效 connection:didFailWithError: 被调用,但除此之外,您无法以任何方式真正与 SSL 证书交互。

您可能需要自己动手或寻找库来帮助您做到这一点。

There isn't a built-in way to check that information. If the certificate isn't valid connection:didFailWithError: is called, but beyond that, you can't really interact with the SSL certificate in any way.

You will likely have to roll your own or find libraries to help you out to do this.

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