AFNetworking 3.0實現(xiàn)https雙向認(rèn)證

目的

為了能使用安全的http通道,避免路由劫持芝此,抓包等方法竊取重要數(shù)據(jù)骇两,為了實現(xiàn)蘋果ATS(App Transport Security)朝群,使用https(http通道加入SSL層)通道加密進(jìn)行接口設(shè)計,達(dá)到網(wǎng)絡(luò)數(shù)據(jù)安全的目的径缅。項目需求掺栅,加上蘋果無限期延遲ATS的要求,在未來芥驳,https必須會使用柿冲。

證書

在https雙向認(rèn)證的要求下,服務(wù)端需要簽發(fā)服務(wù)器證書和客戶端證書兆旬。iOS所需要的證書如下:

  • 服務(wù)端.cer(server.cer)
  • 客戶端.p12(client.p12)

使用AFNetworking 3.0

AFHTTPSessionManager

+ (AFHTTPSessionManager *)networkingManager
{
    AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
    manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/html", @"text/json", @"text/javascript",@"text/plain", nil];   
    manager.requestSerializer.cachePolicy = NSURLRequestReloadIgnoringLocalCacheData;

    //啟動證書驗證
    manager.securityPolicy = [self securityPolicy];
    [manager setSessionDidBecomeInvalidBlock:^(NSURLSession * _Nonnull session, NSError * _Nonnull error) {
        LPLog(@"%@",error.localizedDescription);
    }];
   //啟用雙向認(rèn)證需要下面的代碼假抄,如果只是單向認(rèn)證則不需要下面代碼,下面是開啟客戶端驗證的代碼丽猬。
    __weak typeof(manager)weakSelf = manager;
    [manager setSessionDidReceiveAuthenticationChallengeBlock:^NSURLSessionAuthChallengeDisposition(NSURLSession*session, NSURLAuthenticationChallenge *challenge, NSURLCredential *__autoreleasing*_credential) {
        __strong typeof(manager) man = weakSelf;
        NSURLSessionAuthChallengeDisposition disposition = NSURLSessionAuthChallengePerformDefaultHandling;
        __autoreleasing NSURLCredential *credential =nil;
        if([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]) {
            if([man.securityPolicy evaluateServerTrust:challenge.protectionSpace.serverTrust forDomain:challenge.protectionSpace.host]) {
                credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust];
                if(credential) {
                    disposition =NSURLSessionAuthChallengeUseCredential;
                } else {
                    disposition =NSURLSessionAuthChallengePerformDefaultHandling;
                }
            } else {
                disposition = NSURLSessionAuthChallengeCancelAuthenticationChallenge;
            }
        } else {
            // 客戶端驗證
            SecIdentityRef identity = NULL;
            SecTrustRef trust = NULL;
            //客戶端證書路徑
            NSString *p12 = [[NSBundle mainBundle] pathForResource:@"client" ofType:@"p12"];
            NSFileManager *fileManager =[NSFileManager defaultManager];
            
            if (![fileManager fileExistsAtPath:p12]){ NSLog(@"client.p12:not exist"); }
            else {
                NSData *PKCS12Data = [NSData dataWithContentsOfFile:p12];
                if ([self extractIdentity:&identity andTrust:&trust fromPKCS12Data:PKCS12Data]) {
                    SecCertificateRef certificate = NULL;
                    SecIdentityCopyCertificate(identity, &certificate);
                    const void*certs[] = {certificate};
                    CFArrayRef certArray =CFArrayCreate(kCFAllocatorDefault, certs,1,NULL);
                    credential =[NSURLCredential credentialWithIdentity:identity certificates:(__bridge  NSArray*)certArray persistence:NSURLCredentialPersistencePermanent];
                    disposition = NSURLSessionAuthChallengeUseCredential;
                    CFRelease(certArray);
                }
            }
        }
        *_credential = credential;
        return disposition;
    }];
    return manager;
}

啟用服務(wù)器證書驗證

+ (AFSecurityPolicy *)securityPolicy
{
    //服務(wù)器證書的路徑宿饱,開啟服務(wù)器驗證
    NSString *cerPath = [[NSBundle mainBundle] pathForResource:@"server" ofType:@"cer"];
    NSData *certData = [NSData dataWithContentsOfFile:cerPath];
    // AFSSLPinningModeCertificate 使用證書驗證模式
    AFSecurityPolicy *securityPolicy = [AFSecurityPolicy policyWithPinningMode:AFSSLPinningModeCertificate];
    //允許自建證書
    securityPolicy.allowInvalidCertificates = YES;   
    //關(guān)閉域名驗證
    securityPolicy.validatesDomainName = NO;   
    securityPolicy.pinnedCertificates = [NSSet setWithObjects:certData, nil];
    return securityPolicy;
}

驗證客戶端證書

+(BOOL)extractIdentity:(SecIdentityRef*)outIdentity andTrust:(SecTrustRef *)outTrust fromPKCS12Data:(NSData *)inPKCS12Data {
    OSStatus securityError = errSecSuccess;
    //客戶端證書密碼
    NSDictionary*optionsDictionary = [NSDictionary dictionaryWithObject:@"123456"
                                                                 forKey:(__bridge id)kSecImportExportPassphrase];
    CFArrayRef items = CFArrayCreate(NULL, 0, 0, NULL);
    securityError = SecPKCS12Import((__bridge CFDataRef)inPKCS12Data,(__bridge CFDictionaryRef)optionsDictionary,&items);
    if(securityError == 0) {
        CFDictionaryRef myIdentityAndTrust =CFArrayGetValueAtIndex(items,0);
        const void*tempIdentity =NULL;
        tempIdentity= CFDictionaryGetValue (myIdentityAndTrust,kSecImportItemIdentity);
        *outIdentity = (SecIdentityRef)tempIdentity;
        const void*tempTrust =NULL;
        tempTrust = CFDictionaryGetValue(myIdentityAndTrust,kSecImportItemTrust);
        *outTrust = (SecTrustRef)tempTrust;
    } else {
        return NO;
    }
    return YES;
}

問題

客戶端證書和服務(wù)器證書都必須由服務(wù)器生成,如果驗證失敗脚祟,很大可能就是證書生成錯誤的問題谬以。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市由桌,隨后出現(xiàn)的幾起案子为黎,更是在濱河造成了極大的恐慌,老刑警劉巖行您,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件铭乾,死亡現(xiàn)場離奇詭異,居然都是意外死亡娃循,警方通過查閱死者的電腦和手機(jī)炕檩,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來捌斧,“玉大人,你說我怎么就攤上這事〉婆祝” “怎么了?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵跷究,是天一觀的道長。 經(jīng)常有香客問我舆吮,道長揭朝,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任色冀,我火速辦了婚禮潭袱,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘锋恬。我一直安慰自己屯换,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布与学。 她就那樣靜靜地躺著彤悔,像睡著了一般。 火紅的嫁衣襯著肌膚如雪索守。 梳的紋絲不亂的頭發(fā)上晕窑,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天,我揣著相機(jī)與錄音卵佛,去河邊找鬼杨赤。 笑死,一個胖子當(dāng)著我的面吹牛截汪,可吹牛的內(nèi)容都是我干的疾牲。 我是一名探鬼主播,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼衙解,長吁一口氣:“原來是場噩夢啊……” “哼阳柔!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起蚓峦,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤舌剂,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后暑椰,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體霍转,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年干茉,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片很泊。...
    茶點故事閱讀 38,617評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡角虫,死狀恐怖沾谓,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情戳鹅,我是刑警寧澤均驶,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站枫虏,受9級特大地震影響妇穴,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜隶债,卻給世界環(huán)境...
    茶點故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一腾它、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧死讹,春花似錦瞒滴、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至愧旦,卻和暖如春世剖,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背笤虫。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工旁瘫, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人耕皮。 一個月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓境蜕,卻偏偏與公主長得像,于是被迫代替她去往敵國和親凌停。 傳聞我的和親對象是個殘疾皇子粱年,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,486評論 2 348

推薦閱讀更多精彩內(nèi)容

  • 一、作用 不使用SSL/TLS的HTTP通信罚拟,就是不加密的通信台诗。所有信息明文傳播,帶來了三大風(fēng)險赐俗。 (1)竊聽風(fēng)險...
    XLsn0w閱讀 10,494評論 2 44
  • 原文地址 http://blog.csdn.net/u012409247/article/details/4985...
    0fbf551ff6fb閱讀 3,515評論 0 13
  • 本想在這篇文章中單獨寫AFNetworking 3.0中AFSecurityPolicy的源碼閱讀筆記的拉队。但隨著源...
    WeiHing閱讀 2,559評論 1 13
  • 根據(jù)廣大開發(fā)者的傳聞,2017年1月1號阻逮,蘋果公司要執(zhí)行ATS政策了粱快。所有app必須強(qiáng)制支持https(不包括一些...
    簡單日記閱讀 2,140評論 2 7
  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理,服務(wù)發(fā)現(xiàn),斷路器事哭,智...
    卡卡羅2017閱讀 134,629評論 18 139