Searched refs:Identity (Results 1 - 25 of 53) sorted by relevance

123

/macosx-10.10/Security-57031.1.35/Security/include/security_keychain/
H A DIdentity.h25 // Identity.h - Working with Identities
39 class Identity : public SecCFObject class in namespace:Security::KeychainCore
41 NOCOPY(Identity)
43 SECCFFUNCTIONS(Identity, SecIdentityRef, errSecInvalidItemRef, gTypes().Identity)
45 Identity(const SecPointer<KeyItem> &privateKey,
47 Identity(const StorageManager::KeychainList &keychains, const SecPointer<Certificate> &certificate);
48 virtual ~Identity() throw();
53 bool operator < (const Identity &other) const;
54 bool operator == (const Identity
[all...]
H A DIdentity.cpp25 // Identity.cpp - Working with Identities
27 #include <security_keychain/Identity.h>
35 Identity::Identity(const SecPointer<KeyItem> &privateKey, function in class:Identity
42 Identity::Identity(const StorageManager::KeychainList &keychains, const SecPointer<Certificate> &certificate) : function in class:Identity
57 Identity::~Identity() throw()
62 Identity::privateKey() const
68 Identity
[all...]
H A DIdentityCursor.h43 class Identity;
54 virtual bool next(SecPointer<Identity> &identity);
73 virtual bool next(SecPointer<Identity> &identity);
81 SecPointer<Identity> mPreferredIdentity;
H A DSecCFTypes.cpp56 Identity("SecIdentity"),
H A DSecCFTypes.h86 CFClass Identity; member in class:Security::KeychainCore::SecCFTypes
H A DSecIdentitySearch.cpp27 #include <security_keychain/Identity.h>
109 SecPointer<Identity> identityPtr;
H A DSecIdentity.cpp32 #include <security_keychain/Identity.h>
111 return gTypes().Identity.typeID;
124 SecPointer<Certificate> certificatePtr(Identity::required(identityRef)->certificate());
138 SecPointer<KeyItem> keyItemPtr(Identity::required(identityRef)->privateKey());
155 SecPointer<Identity> identityPtr(new Identity(keychains, certificatePtr));
172 SecPointer<Identity> identityPtr(new Identity(keyItemPtr, certificatePtr));
202 SecPointer<Identity> id1(Identity
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DIdentity.h25 // Identity.h - Working with Identities
39 class Identity : public SecCFObject class in namespace:Security::KeychainCore
41 NOCOPY(Identity)
43 SECCFFUNCTIONS(Identity, SecIdentityRef, errSecInvalidItemRef, gTypes().Identity)
45 Identity(const SecPointer<KeyItem> &privateKey,
47 Identity(const StorageManager::KeychainList &keychains, const SecPointer<Certificate> &certificate);
48 virtual ~Identity() throw();
53 bool operator < (const Identity &other) const;
54 bool operator == (const Identity
[all...]
H A DIdentity.cpp25 // Identity.cpp - Working with Identities
27 #include <security_keychain/Identity.h>
35 Identity::Identity(const SecPointer<KeyItem> &privateKey, function in class:Identity
42 Identity::Identity(const StorageManager::KeychainList &keychains, const SecPointer<Certificate> &certificate) : function in class:Identity
57 Identity::~Identity() throw()
62 Identity::privateKey() const
68 Identity
[all...]
H A DIdentityCursor.h43 class Identity;
54 virtual bool next(SecPointer<Identity> &identity);
73 virtual bool next(SecPointer<Identity> &identity);
81 SecPointer<Identity> mPreferredIdentity;
H A DSecCFTypes.cpp56 Identity("SecIdentity"),
H A DSecCFTypes.h86 CFClass Identity; member in class:Security::KeychainCore::SecCFTypes
H A DSecIdentitySearch.cpp27 #include <security_keychain/Identity.h>
109 SecPointer<Identity> identityPtr;
H A DSecIdentity.cpp32 #include <security_keychain/Identity.h>
111 return gTypes().Identity.typeID;
124 SecPointer<Certificate> certificatePtr(Identity::required(identityRef)->certificate());
138 SecPointer<KeyItem> keyItemPtr(Identity::required(identityRef)->privateKey());
155 SecPointer<Identity> identityPtr(new Identity(keychains, certificatePtr));
172 SecPointer<Identity> identityPtr(new Identity(keyItemPtr, certificatePtr));
202 SecPointer<Identity> id1(Identity
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DIdentity.h25 // Identity.h - Working with Identities
39 class Identity : public SecCFObject class in namespace:Security::KeychainCore
41 NOCOPY(Identity)
43 SECCFFUNCTIONS(Identity, SecIdentityRef, errSecInvalidItemRef, gTypes().Identity)
45 Identity(const SecPointer<KeyItem> &privateKey,
47 Identity(const StorageManager::KeychainList &keychains, const SecPointer<Certificate> &certificate);
48 virtual ~Identity() throw();
53 bool operator < (const Identity &other) const;
54 bool operator == (const Identity
[all...]
H A DIdentity.cpp25 // Identity.cpp - Working with Identities
27 #include <security_keychain/Identity.h>
35 Identity::Identity(const SecPointer<KeyItem> &privateKey, function in class:Identity
42 Identity::Identity(const StorageManager::KeychainList &keychains, const SecPointer<Certificate> &certificate) : function in class:Identity
57 Identity::~Identity() throw()
62 Identity::privateKey() const
68 Identity
[all...]
H A DIdentityCursor.h43 class Identity;
54 virtual bool next(SecPointer<Identity> &identity);
73 virtual bool next(SecPointer<Identity> &identity);
81 SecPointer<Identity> mPreferredIdentity;
H A DSecCFTypes.cpp56 Identity("SecIdentity"),
H A DSecCFTypes.h86 CFClass Identity; member in class:Security::KeychainCore::SecCFTypes
H A DSecIdentitySearch.cpp27 #include <security_keychain/Identity.h>
109 SecPointer<Identity> identityPtr;
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dcodesigdb.h49 // Identity is an abstract class modeling a code-identity in the database.
53 class Identity { class in class:CodeSignatures
56 Identity();
57 virtual ~Identity();
83 bool find(Identity &id, uid_t user);
85 void makeLink(Identity &id, const std::string &ident, bool forUser = false, uid_t user = 0);
H A Dcodesigdb.cpp67 // A subclass of Identity made of whole cloth (from a raw CodeSignature ACL information)
69 struct AclIdentity : public CodeSignatures::Identity {
121 // Basic Identity objects
123 CodeSignatures::Identity::Identity() : mState(untried) function in class:CodeSignatures::Identity
126 CodeSignatures::Identity::~Identity()
129 string CodeSignatures::Identity::canonicalName(const string &path)
141 bool CodeSignatures::find(Identity &id, uid_t user)
143 if (id.mState != Identity
[all...]
H A Dclientid.h40 class ClientIdentification : public CodeSignatures::Identity {
47 // CodeSignatures::Identity personality
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dthreading.h305 class Identity { class in class:Security::Thread
308 Identity(pthread_t id) : mIdent(id) { } function in class:Security::Thread::Identity
310 Identity() { } function in class:Security::Thread::Identity
312 static Identity current() { return pthread_self(); }
314 bool operator == (const Identity &other) const
317 bool operator != (const Identity &other) const
336 Identity self; // my own identity (instance constant)
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dthreading.h305 class Identity { class in class:Security::Thread
308 Identity(pthread_t id) : mIdent(id) { } function in class:Security::Thread::Identity
310 Identity() { } function in class:Security::Thread::Identity
312 static Identity current() { return pthread_self(); }
314 bool operator == (const Identity &other) const
317 bool operator != (const Identity &other) const
336 Identity self; // my own identity (instance constant)

Completed in 194 milliseconds

123