我的方法:
+(SecKeyRef)getKeyByTagWithoutAlert:(NSString *)keyTag status:(OSStatus *) status{
*status = noErr;
SecKeyRef key = NULL;
NSMutableDictionary *queryKey = [[NSMutableDictionary alloc] init];
// Set the key query dictionary.
[queryKey setObject:(id)kSecClassKey forKey:(id)kSecClass];
[queryKey setObject:[SecKeyUtility getDataByTag:keyTag] forKey:(id)kSecAttrApplicationTag];
[queryKey setObject:(id)kSecAttrKeyTypeRSA forKey:(id)kSecAttrKeyType];
[queryKey setObject:[NSNumber numberWithBool:YES] forKey:(id)kSecReturnRef];
*status = SecItemCopyMatching((CFDictionaryRef)queryKey, (CFTypeRef *)&key);
[queryKey release];
return key;
}
直到我重新启动iPhone4才能正常工作。在此SecItemCopyMatching返回错误代码-25300并且我的应用程序停止正常工作。在iPhone3上我没有这个问题,只是工作完美。 你能救我吗?
对不起我的英文。
答案 0 :(得分:3)
错误25300
是errSecItemNotFound
,这意味着您的钥匙链中没有此类商品。