24 - HTTPS

2017-07-02  本文已影响60人  RadioWaves

HTTP : (Hypertext Transfer Protocol) : 超文本传输协议


HTTPS : (Hyper Text Transfer Protocol over Secure Socket Layer) : 安全套接字层超文本传输协议


HTTPS和HTTP的区别主要为以下四点:

一、https协议需要到ca申请证书,一般免费证书很少,需要交费。
二、http是超文本传输协议,信息是明文传输,https 则是具有安全性的ssl加密传输协议。
三、http和https使用的是完全不同的连接方式,用的端口也不一样,前者是80,后者是443。
四、http的连接很简单,是无状态的;HTTPS协议是由SSL+HTTP协议构建的可进行加密传输、身份认证的网络协议,比http协议安全。


ca证书:

  • 内部包含公钥和私钥

HTTPS请求是这样的:

  • 首先在服务器端,会有一个受保护空间,在里面放有证安全证书.

在浏览器中当你打开一个HTTPS网站,会弹出一个框,让你接受证书,还有的大型网站会强制给你安装,但手机上是怎么弄的呢
- (void)viewDidLoad {
    [super viewDidLoad];
  
    // 设置代理 开启线程
    NSURLSession *session = [NSURLSession sessionWithConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration] delegate:self delegateQueue:[[NSOperationQueue alloc] init]];
    
    // 像苹果网站发送数据
    NSURLSessionDataTask *task = [session dataTaskWithURL:[NSURL URLWithString:@"https://www.apple.com/"] completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
        NSLog(@"%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
    }];

    // 开始任务
    [task resume];
}

#pragma mark - <NSURLSessionTaskDelegate>
/**
 * challenge :询问
 * completionHandler : 通过调用这个block,来告诉URLSession要不要接收这个证书
 * void (^)(NSURLSessionAuthChallengeDisposition, NSURLCredential *)
 * NSURLSessionAuthChallengeDisposition : 如何处理这个安全证书
 * NSURLCredential :安全证书
 */
- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task 
                                            didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge
 completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition, NSURLCredential *))completionHandler
{
    // 如果不是服务器信任类型的证书,直接返回
    if (![challenge.protectionSpace.authenticationMethod
                                          isEqualToString:NSURLAuthenticationMethodServerTrust]) return;
    

    // 根据服务器的信任信息创建证书对象
    NSURLCredential *crdential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust];

    // 利用这个block说明使用这个证书
    if (completionHandler) {
        completionHandler(NSURLSessionAuthChallengeUseCredential, crdential);
     }
    
    // 以下是装B写法
    //  !completionHandler ? : completionHandler(NSURLSessionAuthChallengeUseCredential, challenge.proposedCredential);
}
上一篇下一篇

猜你喜欢

热点阅读