3

出于某种原因,我无法让这个简单的钥匙串代码工作。

//Let's create an empty mutable dictionary:
NSMutableDictionary *keychainItem = [NSMutableDictionary dictionary];

NSString *username = self.nwUsernameTxtFld.text;
NSString *password = self.passwordTxtFld.text;

//Populate it with the data and the attributes we want to use.

keychainItem[(__bridge id)kSecClass] = (__bridge id)kSecClassInternetPassword; // We specify what kind of keychain item this is.
keychainItem[(__bridge id)kSecAttrAccessible] = (__bridge id)kSecAttrAccessibleWhenUnlocked; // This item can only be accessed when the user unlocks the device.
keychainItem[(__bridge id)kSecAttrServer] = @"http://www.myawesomeservice.com";
keychainItem[(__bridge id)kSecAttrAccount] = username; //Our username.

if(SecItemCopyMatching((__bridge CFDictionaryRef)keychainItem, NULL) == noErr)
{

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"The Item Already Exists", nil)
                                                    message:NSLocalizedString(@"Please update it instead.", )
                                                   delegate:nil
                                          cancelButtonTitle:NSLocalizedString(@"OK", nil)
                                          otherButtonTitles:nil];
    [alert show];

}else
{
    NSLog(@"can add new item.");
    keychainItem[(__bridge id)kSecValueData] = password; //Our password

    OSStatus sts = SecItemAdd((__bridge CFDictionaryRef)keychainItem, NULL);
    NSLog(@"%d", (int)sts);
}

我已经检查了苹果关于此事的文档,并根据它:

传递给函数的一个或多个参数无效。

然而,该SecAddItem函数需要两个参数:

OSStatus SecItemAdd (
   CFDictionaryRef attributes,
   CFTypeRef *result
);

我将 NULL 传递给结果。根据 Apple 的文档,这是可以接受的:

结果返回时,对新添加项目的引用。结果的确切类型基于属性中提供的值,如下所述。如果不需要此结果,则传递 NULL。

所以我真的不知道我在这里做错了什么。我正在向它传递一个字典和一个 NULL 值。该函数需要两者,我将两者都提供。有人可以告诉我有什么问题吗?

作为参考,文档在这里

4

2 回答 2

3

您在 key 的字典中插入了不正确的数据类型kSecValueData。如您问题底部的文档中所示,它需要CFDataRef(或桥接NSData),但您正在插入一个NSString。转换NSString为微不足道的事情NSData,一旦这样做,您将不再出现此错误。

于 2014-06-11T05:37:07.450 回答
1

我因设置错误的 kSecClass 而收到此错误。我使用了 kSecClassInternetPassword 而不是 kSecClassGenericPassword。希望这可以帮助

于 2016-02-10T15:04:39.770 回答