我们如何使用 Objective C 获取 iPhone 应用程序启用 SSL 的网页的详细信息?
我有以下两个要求。
我的 iPhone 应用程序有一个要求,即应读取启用 https 的网页的 SSL 证书详细信息并将其存储到我的应用程序中。这可以在后台进程中或在 UIWebView 控制器中加载网页时完成。是否可以?如果是这样,您能否提供 Objective-C 代码来获取详细信息。
是否可以验证启用 https 的网页的扩展验证 (EV) 证书?如果是,请提供为此目的的 Objective-C 代码。
非常感谢。
马赫什
I have two requirements as follows.
I have a requirement in my iPhone App that the SSL certificate details of the https enabled webpage should be read and stored into my app. This could be done in background process or at the time of loading the webpage in UIWebView controller. Is it possible? If so, can you please provide the Objective-C code to get the details.
Is it possible to verify the Extended Validation(EV) certificate of a https enabled webpage? If so, please provide the Objective-C code for this.
Many thanks in advance.
Mahesh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
遗憾的是,1 的答案是你做不到。除了将 SSL 证书包含在捆绑包中之外,无法向任何钥匙串访问列表(Apple 除外)提供 SSL 证书。请参阅我的相关问题:
在 iOS 上查找证书
Sadly, the answer to 1 is that you cannot do it. There is no way to provision a SSL certificate to any keychain access list (other than the Apple one) other than including it in the bundle. See my related question:
Finding a certificate on iOS