vote up 1 vote down star

I'm trying to get the attributes of a keychain item. This code should look up all the available attributes, then print off their tags and contents.

According to the docs I should be seeing tags like 'cdat', but instead they just look like an index (i.e., the first tag is 0, next is 1). This makes it pretty useless since I can't tell which attribute is the one I'm looking for.

	SecItemClass itemClass;
	SecKeychainItemCopyAttributesAndData(itemRef, NULL, &itemClass, NULL, NULL, NULL);

	SecKeychainRef keychainRef;
	SecKeychainItemCopyKeychain(itemRef, &keychainRef);

	SecKeychainAttributeInfo *attrInfo;
	SecKeychainAttributeInfoForItemID(keychainRef, itemClass, &attrInfo);

	SecKeychainAttributeList *attributes;
	SecKeychainItemCopyAttributesAndData(itemRef, attrInfo, NULL, &attributes, 0, NULL);

	for (int i = 0; i < attributes->count; i ++)
	{
		SecKeychainAttribute attr = attributes->attr[i];
		NSLog(@"%08x %@", attr.tag, [NSData dataWithBytes:attr.data length:attr.length]);
	}

	SecKeychainFreeAttributeInfo(attrInfo);
	SecKeychainItemFreeAttributesAndData(attributes, NULL);
	CFRelease(itemRef);
	CFRelease(keychainRef);
flag

1 Answer

vote up 0 vote down

I think the documentation leads to a bit of confusion.

The numbers I'm seeing appear to be keychain item attribute constants for keys.

However, SecKeychainItemCopyAttributesAndData returns a SecKeychainAttributeList struct, which contains an array of SecKeychainAttributes. From TFD:

tag A 4-byte attribute tag. See “Keychain Item Attribute Constants” for valid attribute types.

The attribute constants (of the non-"for keys" variety) are the 4-char values I expected to see.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.