Searched refs:securityDomain (Results 1 - 11 of 11) sorted by relevance

/macosx-10.9.5/Security-55471.14.18/sec/Security/Tool/
H A Dadd_internet_password.c26 const char *securityDomain, const char *accountName, const char *path,
43 if (securityDomain) {
45 values[ix++] = CFStringCreateWithCStringNoCopy(NULL, securityDomain,
99 char *serverName = NULL, *securityDomain = NULL, *accountName = NULL, *path = NULL, *passwordData = NULL; local
123 securityDomain = optarg;
165 result = do_addinternetpassword(keychainName, serverName, securityDomain,
25 do_addinternetpassword(const char *keychainName, const char *serverName, const char *securityDomain, const char *accountName, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, const void *passwordData) argument
H A Dkeychain_find.c209 const char *serverName, const char *securityDomain,
226 if (securityDomain) {
228 values[ix++] = CFStringCreateWithCStringNoCopy(NULL, securityDomain,
289 char *serverName = NULL, *securityDomain = NULL, *accountName = NULL, *path = NULL; local
304 securityDomain = optarg;
339 result = do_keychain_find_or_delete_internet_password(do_delete, serverName, securityDomain,
208 do_keychain_find_or_delete_internet_password(Boolean do_delete, const char *serverName, const char *securityDomain, const char *accountName, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, Boolean get_password) argument
/macosx-10.9.5/SecurityTool-55115/
H A Dkeychain_find.h55 const char *securityDomain,
H A Dkeychain_find.c163 const char *securityDomain,
185 Boolean primaryKey = (accountName && securityDomain && serverName &&
225 if (securityDomain != NULL) {
227 attrs[attrList.count].length = strlen(securityDomain);
228 attrs[attrList.count].data = (void *)securityDomain;
528 const char *securityDomain,
547 securityDomain,
571 const char *securityDomain,
589 securityDomain,
801 char *serverName = NULL, *securityDomain local
156 find_first_internet_password(CFTypeRef keychainOrArray, FourCharCode itemCreator, FourCharCode itemType, const char *kind, const char *comment, const char *label, const char *serverName, const char *securityDomain, const char *accountName, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType) argument
521 do_keychain_find_internet_password(CFTypeRef keychainOrArray, FourCharCode itemCreator, FourCharCode itemType, const char *kind, const char *comment, const char *label, const char *serverName, const char *securityDomain, const char *accountName, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, Boolean get_password, Boolean password_stdout) argument
564 do_keychain_delete_internet_password(CFTypeRef keychainOrArray, FourCharCode itemCreator, FourCharCode itemType, const char *kind, const char *comment, const char *label, const char *serverName, const char *securityDomain, const char *accountName, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType) argument
904 char *serverName = NULL, *securityDomain = NULL, *accountName = NULL, *path = NULL; local
[all...]
H A Dkeychain_add.c253 const char *securityDomain,
270 securityDomain,accountName,path,port,protocol,authenticationType);
318 if (securityDomain != NULL) {
320 attrs[attrList.count].length = strlen(securityDomain);
321 attrs[attrList.count].data = (void *)securityDomain;
379 const char *securityDomain,
396 securityDomain,accountName,path,port,protocol,authenticationType,
418 { kSecSecurityDomainItemAttr, securityDomain ? strlen(securityDomain) : 0, (char *)securityDomain },
246 do_update_internet_password(const char *keychainName, FourCharCode itemCreator, FourCharCode itemType, const char *kind, const char *comment, const char *label, const char *serverName, const char *securityDomain, const char *accountName, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, const void *passwordData, SecAccessRef access) argument
372 do_add_internet_password(const char *keychainName, FourCharCode itemCreator, FourCharCode itemType, const char *kind, const char *comment, const char *label, const char *serverName, const char *securityDomain, const char *accountName, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, const void *passwordData, SecAccessRef access, Boolean update) argument
691 char *serverName = NULL, *securityDomain = NULL, *accountName = NULL, *path = NULL, *passwordData = NULL; local
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecKeychain.h511 @param securityDomainLength The length of the buffer pointed to by securityDomain.
512 @param securityDomain A pointer to a string containing the security domain associated with this password, or NULL if there is no relevant security domain.
524 @discussion The SecKeychainAddInternetPassword function adds a new Internet server password to the specified keychain. Required parameters to identify the password are serverName and accountName (you cannot pass NULL for both parameters). In addition, some protocols may require an optional securityDomain when authentication is requested. SecKeychainAddInternetPassword optionally returns a reference to the newly added item.
526 OSStatus SecKeychainAddInternetPassword(SecKeychainRef keychain, UInt32 serverNameLength, const char *serverName, UInt32 securityDomainLength, const char *securityDomain, UInt32 accountNameLength, const char *accountName, UInt32 pathLength, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, UInt32 passwordLength, const void *passwordData, SecKeychainItemRef *itemRef);
534 @param securityDomainLength The length of the buffer pointed to by securityDomain.
535 @param securityDomain A pointer to a string containing the security domain. This parameter is optional, as not all protocols will require it.
549 OSStatus SecKeychainFindInternetPassword(CFTypeRef keychainOrArray, UInt32 serverNameLength, const char *serverName, UInt32 securityDomainLength, const char *securityDomain, UInt32 accountNameLength, const char *accountName, UInt32 pathLength, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, UInt32 *passwordLength, void **passwordData, SecKeychainItemRef *itemRef);
H A DSecKeychain.cpp486 SecKeychainAddInternetPassword(SecKeychainRef keychainRef, UInt32 serverNameLength, const char *serverName, UInt32 securityDomainLength, const char *securityDomain, UInt32 accountNameLength, const char *accountName, UInt32 pathLength, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, UInt32 passwordLength, const void *passwordData, SecKeychainItemRef *itemRef) argument
508 if (securityDomain && securityDomainLength)
510 CssmData(const_cast<void *>(reinterpret_cast<const void *>(securityDomain)), securityDomainLength));
544 SecKeychainFindInternetPassword(CFTypeRef keychainOrArray, UInt32 serverNameLength, const char *serverName, UInt32 securityDomainLength, const char *securityDomain, UInt32 accountNameLength, const char *accountName, UInt32 pathLength, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, UInt32 *passwordLength, void **passwordData, SecKeychainItemRef *itemRef) argument
559 if (securityDomain && securityDomainLength)
562 CssmData (const_cast<char*>(securityDomain), securityDomainLength));
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecKeychain.h511 @param securityDomainLength The length of the buffer pointed to by securityDomain.
512 @param securityDomain A pointer to a string containing the security domain associated with this password, or NULL if there is no relevant security domain.
524 @discussion The SecKeychainAddInternetPassword function adds a new Internet server password to the specified keychain. Required parameters to identify the password are serverName and accountName (you cannot pass NULL for both parameters). In addition, some protocols may require an optional securityDomain when authentication is requested. SecKeychainAddInternetPassword optionally returns a reference to the newly added item.
526 OSStatus SecKeychainAddInternetPassword(SecKeychainRef keychain, UInt32 serverNameLength, const char *serverName, UInt32 securityDomainLength, const char *securityDomain, UInt32 accountNameLength, const char *accountName, UInt32 pathLength, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, UInt32 passwordLength, const void *passwordData, SecKeychainItemRef *itemRef);
534 @param securityDomainLength The length of the buffer pointed to by securityDomain.
535 @param securityDomain A pointer to a string containing the security domain. This parameter is optional, as not all protocols will require it.
549 OSStatus SecKeychainFindInternetPassword(CFTypeRef keychainOrArray, UInt32 serverNameLength, const char *serverName, UInt32 securityDomainLength, const char *securityDomain, UInt32 accountNameLength, const char *accountName, UInt32 pathLength, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, UInt32 *passwordLength, void **passwordData, SecKeychainItemRef *itemRef);
H A DSecKeychain.cpp486 SecKeychainAddInternetPassword(SecKeychainRef keychainRef, UInt32 serverNameLength, const char *serverName, UInt32 securityDomainLength, const char *securityDomain, UInt32 accountNameLength, const char *accountName, UInt32 pathLength, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, UInt32 passwordLength, const void *passwordData, SecKeychainItemRef *itemRef) argument
508 if (securityDomain && securityDomainLength)
510 CssmData(const_cast<void *>(reinterpret_cast<const void *>(securityDomain)), securityDomainLength));
544 SecKeychainFindInternetPassword(CFTypeRef keychainOrArray, UInt32 serverNameLength, const char *serverName, UInt32 securityDomainLength, const char *securityDomain, UInt32 accountNameLength, const char *accountName, UInt32 pathLength, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, UInt32 *passwordLength, void **passwordData, SecKeychainItemRef *itemRef) argument
559 if (securityDomain && securityDomainLength)
562 CssmData (const_cast<char*>(securityDomain), securityDomainLength));
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DSecKeychain.h511 @param securityDomainLength The length of the buffer pointed to by securityDomain.
512 @param securityDomain A pointer to a string containing the security domain associated with this password, or NULL if there is no relevant security domain.
524 @discussion The SecKeychainAddInternetPassword function adds a new Internet server password to the specified keychain. Required parameters to identify the password are serverName and accountName (you cannot pass NULL for both parameters). In addition, some protocols may require an optional securityDomain when authentication is requested. SecKeychainAddInternetPassword optionally returns a reference to the newly added item.
526 OSStatus SecKeychainAddInternetPassword(SecKeychainRef keychain, UInt32 serverNameLength, const char *serverName, UInt32 securityDomainLength, const char *securityDomain, UInt32 accountNameLength, const char *accountName, UInt32 pathLength, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, UInt32 passwordLength, const void *passwordData, SecKeychainItemRef *itemRef);
534 @param securityDomainLength The length of the buffer pointed to by securityDomain.
535 @param securityDomain A pointer to a string containing the security domain. This parameter is optional, as not all protocols will require it.
549 OSStatus SecKeychainFindInternetPassword(CFTypeRef keychainOrArray, UInt32 serverNameLength, const char *serverName, UInt32 securityDomainLength, const char *securityDomain, UInt32 accountNameLength, const char *accountName, UInt32 pathLength, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, UInt32 *passwordLength, void **passwordData, SecKeychainItemRef *itemRef);
H A DSecKeychain.cpp486 SecKeychainAddInternetPassword(SecKeychainRef keychainRef, UInt32 serverNameLength, const char *serverName, UInt32 securityDomainLength, const char *securityDomain, UInt32 accountNameLength, const char *accountName, UInt32 pathLength, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, UInt32 passwordLength, const void *passwordData, SecKeychainItemRef *itemRef) argument
508 if (securityDomain && securityDomainLength)
510 CssmData(const_cast<void *>(reinterpret_cast<const void *>(securityDomain)), securityDomainLength));
544 SecKeychainFindInternetPassword(CFTypeRef keychainOrArray, UInt32 serverNameLength, const char *serverName, UInt32 securityDomainLength, const char *securityDomain, UInt32 accountNameLength, const char *accountName, UInt32 pathLength, const char *path, UInt16 port, SecProtocolType protocol, SecAuthenticationType authenticationType, UInt32 *passwordLength, void **passwordData, SecKeychainItemRef *itemRef) argument
559 if (securityDomain && securityDomainLength)
562 CssmData (const_cast<char*>(securityDomain), securityDomainLength));

Completed in 132 milliseconds