SecKeychainAddGenericPassword(_:_:_:_:_:_:_:_:)
Adds a new generic password to a keychain.
Declaration
func SecKeychainAddGenericPassword(_ keychain: SecKeychain?, _ serviceNameLength: UInt32, _ serviceName: UnsafePointer<CChar>?, _ accountNameLength: UInt32, _ accountName: UnsafePointer<CChar>?, _ passwordLength: UInt32, _ passwordData: UnsafeRawPointer, _ itemRef: UnsafeMutablePointer<SecKeychainItem?>?) -> OSStatusParameters
- keychain:
A reference to the keychain in which to store a generic password. Pass
NULLto specify the default keychain. - serviceNameLength:
The length of the
serviceNamecharacter string. - serviceName:
A UTF-8 encoded character string representing the service name.
- accountNameLength:
The length of the
accountNamecharacter string. - accountName:
A UTF-8 encoded character string representing the account name.
- passwordLength:
The length of the
passwordDatabuffer. - passwordData:
A pointer to a buffer containing the password data to be stored in the keychain. Before calling this function, allocate enough memory for the buffer to hold the data you want to store.
- itemRef:
On return, a pointer to a reference to the new keychain item. Pass
NULLif you don’t want to obtain this object. You must allocate the memory for this pointer. You must call theCFReleasefunction to release this object when you are finished using it.
Return Value
A result code. See Security Framework Result Codes. The result code errSecNoDefaultKeychain indicates that no default keychain could be found. The result code errSecDuplicateItem indicates that you tried to add a password that already exists in the keychain. The result code errSecDataTooLarge indicates that you tried to add more data than is allowed for a structure of this type.
Discussion
This function adds a new generic password to the specified keychain. Required parameters to identify the password are serviceName and accountName, which are application-defined strings. This function optionally returns a reference to the newly added item.
You can use this function to add passwords for accounts other than the Internet. For example, you might add AppleShare passwords, or passwords for your database or scheduling programs.
This function sets the initial access rights for the new keychain item so that the application creating the item is given trusted access.
This function automatically calls the function SecKeychainUnlock(_:_:_:_:) to display the Unlock Keychain dialog box if the keychain is currently locked.