---
title: "SecKeychainItemCopyAttributesAndData(_:_:_:_:_:_:)"
framework: security
role: symbol
role_heading: Function
path: "security/seckeychainitemcopyattributesanddata(_:_:_:_:_:_:)"
---

# SecKeychainItemCopyAttributesAndData(_:_:_:_:_:_:)

Retrieves the data and/or attributes stored in the given keychain item.

## Declaration

```swift
func SecKeychainItemCopyAttributesAndData(_ itemRef: SecKeychainItem, _ info: UnsafeMutablePointer<SecKeychainAttributeInfo>?, _ itemClass: UnsafeMutablePointer<SecItemClass>?, _ attrList: UnsafeMutablePointer<UnsafeMutablePointer<SecKeychainAttributeList>?>?, _ length: UnsafeMutablePointer<UInt32>?, _ outData: UnsafeMutablePointer<UnsafeMutableRawPointer?>?) -> OSStatus
```

## Parameters

- `itemRef`: A reference to the keychain item from which you wish to retrieve data or attributes.
- `info`: A pointer to a list of tags and formats of attributes to retrieve. You can call doc://com.apple.security/documentation/Security/SecKeychainAttributeInfoForItemID(_:_:_:) to obtain a list of all possible attribute tags and formats for the item’s class. Pass NULL if you don’t wish to retrieve any attributes.
- `itemClass`: On return, the item’s class. Pass NULL if not required. See doc://com.apple.security/documentation/Security/SecItemClass for valid constants.
- `attrList`: On return, the retrieved attributes and their values . Pass NULL if not required. You must call the function doc://com.apple.security/documentation/Security/SecKeychainItemFreeAttributesAndData(_:_:) when you no longer need the attributes and values.
- `length`: On return, the actual length of the data returned in the outData parameter.
- `outData`: On return, the data in this item. Pass NULL if not required. You must call the function doc://com.apple.security/documentation/Security/SecKeychainItemFreeAttributesAndData(_:_:) when you no longer need the data.

## Return Value

Return Value A result code. See Security Framework Result Codes.

## Discussion

Discussion This function returns the data and attributes of a specific keychain item. note: This is a CSSM-based API. CSSM is deprecated. For new development, where possible, you should generally use SecItemCopyMatching(_:_:) to obtain attributes of keychain items instead, because that function is based on Core Foundation types. You can use the SecKeychainSearchCopyNext function to search for a keychain item if you don’t already have the item’s reference object. To find and obtain data from a password keychain item, use the SecKeychainFindInternetPassword(_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:) or SecKeychainFindGenericPassword(_:_:_:_:_:_:_:_:) function. You should pair the SecKeychainItemCopyAttributesAndData function with the SecKeychainItemModifyAttributesAndData(_:_:_:_:) function, as these functions handle more attributes than are support by the old Keychain Manager and passing them into older calls yields an invalid attribute error. Use the functions SecKeychainItemModifyContent(_:_:_:_:) and SecKeychainItemCopyContent(_:_:_:_:_:) when dealing with older Keychain Manager functions. If the keychain item data is encrypted, this function decrypts the data before returning it to you. If the calling application is not in the list of trusted applications, the user is prompted before access is allowed. If the access controls for this item do not allow decryption, the function returns the errSecAuthFailed result code.
