iPhone开发:提取SSL证书信息
我正在开发一个应用程序,我想在应用程序和服务器之间设置安全通道。 我想从服务器上的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有内置的方法来检查该信息。如果证书无效 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.