gpt4 book ai didi

ios - 加载带有密码的 X509 pem 证书。 objective-c

转载 作者:行者123 更新时间:2023-12-01 16:24:16 25 4
gpt4 key购买 nike

我是 Objective-C 和 iOS 编程的新手。

我需要使用 REST API,其中请求需要使用 x509 PEM 证书文件和证书密码进行相互 SSL 身份验证。

我的问题是我真的不知道如何在 Objective-C 中做到这一点,在 C# 中它会很简单:

X509Certificate2 myCertificate = new x509Certificate2(certificatePath, certificatePassword);
myRequest.ClientCertificate.Add(myCertificate);

其中"myRequest"只是表示http请求的变量。

我已经在许多论坛和帖子中寻找了一段时间,包括一些旧的 stackoverflow 问题。人们给出的主要提示是“使用 OpenSSL”,但我在几个地方(我认为即使是在一个 stackoverflow 问题中)也读到 Apple 已弃用 OpenSSL。

问题:如何使用 Objective-C 语言加载 .pem x509 证书及其密码以向外部 REST API 服务发送 POST 请求?

谢谢。

最佳答案

我自己的解决方案:

使用OpenSSL命令转换.pem文件介绍pkcs12证书:

openssl pkcs12 -export -in "certificateFile" -inkey "KeyFile" -out "certificate.p12"

然后设置本教程中的一些代码:https://vanjakom.wordpress.com/tag/nsurlconnection/

基本上:

- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
NSLog(@"Authentication challenge");

// load cert
NSString *path = [[NSBundle mainBundle] pathForResource:@"userA" ofType:@"p12"];
NSData *p12data = [NSData dataWithContentsOfFile:path];
CFDataRef inP12data = (__bridge CFDataRef)p12data;

SecIdentityRef myIdentity;
SecTrustRef myTrust;
OSStatus status = extractIdentityAndTrust(inP12data, &myIdentity, &myTrust);

SecCertificateRef myCertificate;
SecIdentityCopyCertificate(myIdentity, &myCertificate);
const void *certs[] = { myCertificate };
CFArrayRef certsArray = CFArrayCreate(NULL, certs, 1, NULL);

NSURLCredential *credential = [NSURLCredential credentialWithIdentity:myIdentity certificates:(__bridge NSArray*)certsArray persistence:NSURLCredentialPersistencePermanent];

[[challenge sender] useCredential:credential forAuthenticationChallenge:challenge];
}

OSStatus extractIdentityAndTrust(CFDataRef inP12data, SecIdentityRef *identity, SecTrustRef *trust)
{
OSStatus securityError = errSecSuccess;

CFStringRef password = CFSTR("userA");
const void *keys[] = { kSecImportExportPassphrase };
const void *values[] = { password };

CFDictionaryRef options = CFDictionaryCreate(NULL, keys, values, 1, NULL, NULL);

CFArrayRef items = CFArrayCreate(NULL, 0, 0, NULL);
securityError = SecPKCS12Import(inP12data, options, &items);

if (securityError == 0) {
CFDictionaryRef myIdentityAndTrust = CFArrayGetValueAtIndex(items, 0);
const void *tempIdentity = NULL;
tempIdentity = CFDictionaryGetValue(myIdentityAndTrust, kSecImportItemIdentity);
*identity = (SecIdentityRef)tempIdentity;
const void *tempTrust = NULL;
tempTrust = CFDictionaryGetValue(myIdentityAndTrust, kSecImportItemTrust);
*trust = (SecTrustRef)tempTrust;
}

if (options) {
CFRelease(options);
}

return securityError;
}

“代码是从教程里复制过来的,没有复制我自己的修改是为了自己的需要”。

解决了

关于ios - 加载带有密码的 X509 pem 证书。 objective-c ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40126057/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com