我正在尝试使用存储在iPhone上.mobileconfig文件中的.pfx连接到服务器。

当服务器要求时

-(void)connection:(NSURLConnection*)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge*)challenge{

如何使用.pfx创建NSURLCredential?我应该使用
+ (NSURLCredential *)credentialWithIdentity:(SecIdentityRef)identity certificates:(NSArray *)certArray persistence:(NSURLCredentialPersistence)persistence

如果是这样,我如何提取.pfx并将其放入数组中。

提前致谢。

最佳答案

因此,没有办法无法从mobileconfig文件获取证书。 iOS应用程序使用其自己的钥匙串访问和存储。只有电子邮件和互联网等其他电话服务可以使用这些证书

关于iphone - 获取iOS移动证书中包含的pfx文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11718305/

10-09 16:23