關(guān)于https配置問題

錯(cuò)誤1.png
相關(guān)鏈接:

關(guān)于ATS參數(shù):http://www.cnblogs.com/dahe007/p/6093874.html
ATS介紹官方文檔:https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html
ATS審核問題:https://yq.aliyun.com/articles/62563

1.拿到后臺(tái)人員給到的域名后 首先查看能否通過ATS驗(yàn)證

-》1.打開終端 輸入命令 nscurl --ats-diagnostics --verbose 你的域名
例1:nscurl --ats-diagnostics --verbose https://www.baidu.com 查看百度的 部分打印結(jié)果

1.png

仔細(xì)觀察 就是系統(tǒng)在做一系列測(cè)試 看在不同的ATS參數(shù)下 結(jié)果是什么 pass or fail

例2:nscurl --ats-diagnostics --verbose https://mu.simochina.com

設(shè)置了NSAllowsArbitraryLoads = true 通過了.png

設(shè)置最小適配TLS到1.2 也是ios要求的 結(jié)果FAIL.png

設(shè)置最小適配TLS到1.0 也是現(xiàn)在用的比較多的 結(jié)果pass 通過了.png

中間還有很多測(cè)試 這是最后的能pass的配置 然后直接復(fù)制了過去 能正常請(qǐng)求到服務(wù)器了.png
2.拿到后臺(tái)人員給到的 .crt證書 轉(zhuǎn)成 .cer證書

->1. 終端命令
cd 到.crt證書 所在文件夾
然后輸入命令 openssl x509 -in 后臺(tái)給你的證書名.crt -out 轉(zhuǎn)化的證書名.cer -outform der
例:
cd /Users/myfile/Desktop/certificate
openssl x509 -in certificate.crt -out certificate.cer -outform der

->2.雙擊后臺(tái)給到的.crt證書 加入鑰匙串 然后從鑰匙串導(dǎo)出時(shí)選擇.cer

->3.根據(jù)域名自己生成一個(gè)單向驗(yàn)證的證書 終端命令
openssl s_client -connect https://你的域名:443 </dev/null 2>/dev/null | openssl x509 -outform DER > 證書名.cer
例:openssl s_client -connect https://baidu.com:443 </dev/null 2>/dev/null | openssl x509 -outform DER > myCertificate.cer

3.開始的錯(cuò)誤是在AFN中報(bào)出來的錯(cuò)誤 加入的證書無(wú)法進(jìn)行驗(yàn)證 加入驗(yàn)證 但是不執(zhí)行回調(diào) 后通過修改ATS參數(shù)獲得解決
我的ATS參數(shù)設(shè)置.png

關(guān)于AFN中https的驗(yàn)證,如下

    //https相關(guān)設(shè)置
    AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
    //安全策略
    [manager setSecurityPolicy:[self customSecurityPolicy]];
    //證書校驗(yàn)
    [self checkCredential:manager];

//安全策略
+ (AFSecurityPolicy*)customSecurityPolicy {
    AFSecurityPolicy *securityPolicy = [AFSecurityPolicy policyWithPinningMode:AFSSLPinningModeCertificate];
    //獲取證書路徑
    NSString * cerPath = [[NSBundle mainBundle] pathForResource:@"myCertificate" ofType:@"cer"];
    NSData *certData = [NSData dataWithContentsOfFile:cerPath];
    NSSet  *dataSet = [NSSet setWithArray:@[certData]];
    [securityPolicy setAllowInvalidCertificates:YES];//是否允許使用自簽名證書
    [securityPolicy setPinnedCertificates:dataSet];//設(shè)置去匹配服務(wù)端證書驗(yàn)證的證書
    [securityPolicy setValidatesDomainName:NO];//是否需要驗(yàn)證域名,默認(rèn)YES
    
    return securityPolicy;
}


//校驗(yàn)證書
+ (void)checkCredential:(AFURLSessionManager *)manager
{
    [manager setSessionDidBecomeInvalidBlock:^(NSURLSession * _Nonnull session, NSError * _Nonnull error) {
        NSLog(@"policy-%@",error);
    }];
    __weak typeof(manager)weakManager = manager;
    [manager setSessionDidReceiveAuthenticationChallengeBlock:^NSURLSessionAuthChallengeDisposition(NSURLSession*session, NSURLAuthenticationChallenge *challenge, NSURLCredential *__autoreleasing*_credential) {
        
        NSURLSessionAuthChallengeDisposition disposition = NSURLSessionAuthChallengePerformDefaultHandling;
        __autoreleasing NSURLCredential *credential =nil;
        NSLog(@"pwc -- authenticationMethod= %@",challenge.protectionSpace.authenticationMethod);
        
        //判斷服務(wù)器要求客戶端的接收認(rèn)證挑戰(zhàn)方式择诈,如果是NSURLAuthenticationMethodServerTrust則表示去檢驗(yàn)服務(wù)端證書是否合法,NSURLAuthenticationMethodClientCertificate則表示需要將客戶端證書發(fā)送到服務(wù)端進(jìn)行檢驗(yàn)
        if([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]) {
            
            // 基于客戶端的安全策略來決定是否信任該服務(wù)器锨侯,不信任的話湿酸,也就沒必要響應(yīng)挑戰(zhàn)
            if([weakManager.securityPolicy evaluateServerTrust:challenge.protectionSpace.serverTrust forDomain:challenge.protectionSpace.host]) {
                // 創(chuàng)建挑戰(zhàn)證書(注:挑戰(zhàn)方式為UseCredential和PerformDefaultHandling都需要新建挑戰(zhàn)證書)
                credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust];
                // 確定挑戰(zhàn)的方式
                if (credential) {
                    //證書挑戰(zhàn)  設(shè)計(jì)policy,none,則跑到這里
                    disposition = NSURLSessionAuthChallengeUseCredential;
                } else {
                    disposition = NSURLSessionAuthChallengePerformDefaultHandling;
                }
            } else {
                disposition = NSURLSessionAuthChallengeCancelAuthenticationChallenge;
            }
        } else { //只有雙向認(rèn)證才會(huì)走這里
            // client authentication
            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
            {
                //生成證書二進(jìn)制文件
                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];
                    //                        credential = [NSURLCredential credentialWithIdentity:identity certificates:nil persistence:NSURLCredentialPersistenceNone];
                    disposition =NSURLSessionAuthChallengeUseCredential;
                    if (certArray) {//釋放資源
                        CFRelease(certArray);
                    }
                }
            }
        }
        
        *_credential = credential;
        return disposition;
    }];
}


//讀取p12文件中的密碼
+ (BOOL)extractIdentity:(SecIdentityRef*)outIdentity andTrust:(SecTrustRef *)outTrust fromPKCS12Data:(NSData *)inPKCS12Data {
    OSStatus securityError = errSecSuccess;
    //client certificate password
    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 {
        NSLog(@"Failedwith error code %d",(int)securityError);
        return NO;
    }
    return YES;
}

相關(guān)鏈接 資料參考:
http://www.reibang.com/p/0109f45395e3
http://www.reibang.com/p/a84237b07611
http://www.reibang.com/p/36ddc5b009a7
http://www.reibang.com/p/1f426385ba53

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市切厘,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌懊缺,老刑警劉巖疫稿,帶你破解...
    沈念sama閱讀 210,978評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡而克,警方通過查閱死者的電腦和手機(jī)靶壮,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來员萍,“玉大人腾降,你說我怎么就攤上這事∷橐铮” “怎么了螃壤?”我有些...
    開封第一講書人閱讀 156,623評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)筋帖。 經(jīng)常有香客問我奸晴,道長(zhǎng),這世上最難降的妖魔是什么日麸? 我笑而不...
    開封第一講書人閱讀 56,324評(píng)論 1 282
  • 正文 為了忘掉前任寄啼,我火速辦了婚禮,結(jié)果婚禮上代箭,老公的妹妹穿的比我還像新娘墩划。我一直安慰自己,他們只是感情好嗡综,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,390評(píng)論 5 384
  • 文/花漫 我一把揭開白布乙帮。 她就那樣靜靜地躺著,像睡著了一般极景。 火紅的嫁衣襯著肌膚如雪察净。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,741評(píng)論 1 289
  • 那天盼樟,我揣著相機(jī)與錄音氢卡,去河邊找鬼。 笑死晨缴,一個(gè)胖子當(dāng)著我的面吹牛译秦,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播喜庞,決...
    沈念sama閱讀 38,892評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼诀浪,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了延都?” 一聲冷哼從身側(cè)響起雷猪,我...
    開封第一講書人閱讀 37,655評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎晰房,沒想到半個(gè)月后求摇,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體射沟,經(jīng)...
    沈念sama閱讀 44,104評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年与境,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了验夯。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,569評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡摔刁,死狀恐怖挥转,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情共屈,我是刑警寧澤绑谣,帶...
    沈念sama閱讀 34,254評(píng)論 4 328
  • 正文 年R本政府宣布,位于F島的核電站拗引,受9級(jí)特大地震影響借宵,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜矾削,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,834評(píng)論 3 312
  • 文/蒙蒙 一壤玫、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧哼凯,春花似錦欲间、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)腻豌。三九已至家坎,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間吝梅,已是汗流浹背虱疏。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評(píng)論 1 264
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留苏携,地道東北人做瞪。 一個(gè)月前我還...
    沈念sama閱讀 46,260評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像右冻,于是被迫代替她去往敵國(guó)和親装蓬。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,446評(píng)論 2 348

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