iOS App中的自定义证书

时间:2015-01-09 00:46:07

标签: ios objective-c ipad certificate

我创建了一个使用Apple Configurator安装到iPad上的证书(p12类型)。我现在想要在我编写的应用程序中访问该证书,但我似乎无法找到它的源代码示例。有很多关于如何使用证书的例子,但我一直无法找到有关如何将其导入应用程序的任何内容。

有人能指出我正确的方向吗?提前谢谢。

*新*

所以我尝试使用清单2-1和清单2-2来遵循这里的教程https://developer.apple.com/library/ios/documentation/Security/Conceptual/CertKeyTrustProgGuide/iPhone_Tasks/iPhone_Tasks.html#//apple_ref/doc/uid/TP40001358-CH208-SW13。现在我放弃了从钥匙串获取证书,而是从主Bundle中加载它。

NSData *certData = [[NSData alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"myfile.com" ofType:@"pfx"]];
CFDataRef myCertData = (__bridge_retained CFDataRef)(certData); 

我不确定我的加载是否正确,但是当我调试certData不是NULL并且包含字节时。

接下来,我修改了两个列表中的代码,因为方法签名与Objective C方法签名不匹配。有人帮助我,为什么Apple会以这种方式展示它?函数内部没有代码被修改。

- (OSStatus) extractIdentityAndTrust: (CFDataRef) inPKCS12Data withIdentity:(SecIdentityRef *) outIdentity withTrust:(SecTrustRef *) outTrust withPassword:(CFStringRef) keyPassword
{
    OSStatus securityError = errSecSuccess;
    const void *keys[] =   { kSecImportExportPassphrase };
    const void *values[] = { keyPassword };
    CFDictionaryRef optionsDictionary = NULL;

    optionsDictionary = CFDictionaryCreate(NULL, keys, values, (keyPassword ? 1 : 0), NULL, NULL);

    CFArrayRef items = NULL;
    securityError = SecPKCS12Import(inPKCS12Data, optionsDictionary, &items);

    if (securityError == 0) {
        CFDictionaryRef myIdentityAndTrust = CFArrayGetValueAtIndex (items, 0);
        const void *tempIdentity = NULL;
        tempIdentity = CFDictionaryGetValue (myIdentityAndTrust,
                                             kSecImportItemIdentity);
        CFRetain(tempIdentity);
        *outIdentity = (SecIdentityRef)tempIdentity;
        const void *tempTrust = NULL;
        tempTrust = CFDictionaryGetValue (myIdentityAndTrust, kSecImportItemTrust);

        CFRetain(tempTrust);
        *outTrust = (SecTrustRef)tempTrust;
    }

    if (optionsDictionary)
        CFRelease(optionsDictionary);

    if (items)
        CFRelease(items);

    return securityError;
}

接下来,我修改了copySummaryString的方法签名。我还必须在功能中添加一个“身份”的尊重。变量。

- (NSString *)copySummaryString:(SecIdentityRef *) identity
{
    // Get the certificate from the identity.
    SecCertificateRef myReturnedCertificate = NULL;
    OSStatus status = SecIdentityCopyCertificate (*identity, &myReturnedCertificate);

    if (status) {
        NSLog(@"SecIdentityCopyCertificate failed.\n");
        return NULL;
    }

    CFStringRef certSummary = SecCertificateCopySubjectSummary
    (myReturnedCertificate);

    NSString* summaryString = [[NSString alloc] initWithString:(__bridge NSString *)certSummary];

    CFRelease(certSummary);

    return summaryString;
}

最后在我的调用函数中,我创建了一个我传递的身份和信任变量:

[self extractIdentityAndTrust:myCertData withIdentity:identity withTrust:trust withPassword:CFSTR("supersecret")];
[self copySummaryString:identity];

当我尝试运行此操作时,我得到一个线程1:EXC_BAD_ACCESS(代码= 1,地址= 0x2b)错误,并且XCode在以下行暂停:

CFStringRef certSummary = SecCertificateCopySubjectSummary

这段代码没有引用我创建的任何变量,所以我真的很惊讶它在这里崩溃了。加载此证书的最终目标是将其用于HTTPS。我希望我至少走在正确的道路上。

1 个答案:

答案 0 :(得分:1)

以下是有关通过移动应用程序查找和使用预安装的证书和身份的文档和示例。

https://developer.apple.com/library/ios/documentation/Security/Conceptual/CertKeyTrustProgGuide/iPhone_Tasks/iPhone_Tasks.html#//apple_ref/doc/uid/TP40001358-CH208-DontLinkElementID_10

<强> * NEW

我检查了你的更新。 你的方法都像魅力一样。

我使用下面的源来调用你的方法,并且能够正确地提取SummaryString。

SecIdentityRef identity = nil;
SecTrustRef trust = nil;

NSData *certData = [[NSData alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"[Dev] InHouse_Certificates" ofType:@"p12"]];
CFDataRef myCertData = (__bridge_retained CFDataRef)(certData);

[self extractIdentityAndTrust:myCertData withIdentity:&identity withTrust:&trust withPassword:CFSTR("1234")];
NSString* summaryString = [self copySummaryString:&identity];