ios 自架验证服务器,iOS和SSL:无法验证自签名的服务器证书

在iOS应用中,使用NSURLConnection处理SSL/HTTPS连接时遇到自签名服务器证书无法验证的问题。代码中尝试通过设置信任证书进行验证,但遇到了错误`Error Domain=NSURLErrorDomain Code=-1012`。开发者已将服务器证书转换为'der'格式,并在iOS 5.x上运行应用,但仍然失败。寻求解决方案。
摘要由CSDN通过智能技术生成

我是相当新的使用SSL通道消费web服务。经过相当不错的搜索后,我发现了一种使用NSURLConnection委托API执行SSL/HTTPS身份验证的方法。以下是代码片段进行实际验证的事情:

iOS和SSL:无法验证自签名的服务器证书

- (void)connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge {

[self printLogToConsole:@"Authenticating...."];

[self printLogToConsole:[NSString stringWithFormat:@"\n%@\n", [challenge description]]];

NSLog(@"\n\nserverTrust: %@\n", [[challenge protectionSpace] serverTrust]);

/* Extract the server certificate for trust validation

*/

NSURLProtectionSpace *protectionSpace = [challenge protectionSpace];

assert(protectionSpace);

SecTrustRef trust = [protectionSpace serverTrust];

assert(trust);

CFRetain(trust); // Make sure this thing stays around until we're done with it

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值