/external/webkit/WebCore/platform/network/ |
Credential.cpp | 26 #include "Credential.h" 32 Credential::Credential() 44 Credential::Credential(const String& user, const String& password, CredentialPersistence persistence) 54 Credential::Credential(const Credential& original, CredentialPersistence persistence) 66 bool Credential::isEmpty() const 76 const String& Credential::user() cons [all...] |
Credential.h | 52 class Credential { 55 Credential(); 56 Credential(const String& user, const String& password, CredentialPersistence); 57 Credential(const Credential& original, CredentialPersistence); 59 Credential(SecIdentityRef identity, CFArrayRef certificates, CredentialPersistence); 86 bool operator==(const Credential& a, const Credential& b); 87 inline bool operator!=(const Credential& a, const Credential& b) { return !(a == b); [all...] |
CredentialStorage.h | 31 class Credential; 37 // WebCore session credential storage. 38 static void set(const Credential&, const ProtectionSpace&, const KURL&); 39 static Credential get(const ProtectionSpace&); 42 static Credential getFromPersistentStorage(const ProtectionSpace&); 46 static bool set(const Credential&, const KURL&); // Returns true if the URL corresponds to a known protection space, so credentials could be updated. 47 static Credential get(const KURL&);
|
CredentialStorage.cpp | 30 #include "Credential.h" 40 typedef HashMap<ProtectionSpace, Credential> ProtectionSpaceToCredentialMap; 87 void CredentialStorage::set(const Credential& credential, const ProtectionSpace& protectionSpace, const KURL& url) 92 protectionSpaceToCredentialMap().set(protectionSpace, credential); 104 Credential CredentialStorage::get(const ProtectionSpace& protectionSpace) 138 bool CredentialStorage::set(const Credential& credential, const KURL& url) 146 protectionSpaceToCredentialMap().set(iter->second, credential); 150 Credential CredentialStorage::get(const KURL& url [all...] |
AuthenticationChallengeBase.h | 28 #include "Credential.h" 40 AuthenticationChallengeBase(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error); 43 const Credential& proposedCredential() const; 59 Credential m_proposedCredential;
|
AuthenticationClient.h | 32 class Credential; 36 virtual void receivedCredential(const AuthenticationChallenge&, const Credential&) = 0;
|
AuthenticationChallengeBase.cpp | 39 const Credential& proposedCredential, 57 const Credential& AuthenticationChallengeBase::proposedCredential() const
|
/external/webkit/WebCore/platform/network/mac/ |
CredentialStorageMac.mm | 30 #include "Credential.h" 34 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace) 36 NSURLCredential *credential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:mac(protectionSpace)]; 37 return credential ? core(credential) : Credential();
|
AuthenticationMac.h | 37 class Credential; 42 NSURLCredential *mac(const Credential&); 46 Credential core(NSURLCredential *);
|
ResourceHandleMac.mm | 80 // Store the preemptively used initial credential so that if we get an authentication challenge, we won't use the same one again. 81 Credential m_initialCredential; 197 // try and reuse the credential preemptively, as allowed by RFC 2617. 203 CredentialStorage::set(Credential(d->m_user, d->m_pass, CredentialPersistenceNone), d->m_request.url()); 490 NSURLCredential *credential = [[NSURLCredential alloc] initWithUser:d->m_user 495 receivedCredential(challenge, core(credential)); 496 [credential release]; 505 Credential credential = CredentialStorage::get(challenge.protectionSpace()); 506 if (!credential.isEmpty() && credential != d->m_initialCredential) [all...] |
AuthenticationMac.mm | 30 #import "Credential.h" 63 - (void)useCredential:(NSURLCredential *)credential forAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge 66 m_client->receivedCredential(core(challenge), core(credential)); 86 const Credential& proposedCredential, 213 NSURLCredential *mac(const Credential& coreCredential) 303 Credential core(NSURLCredential *macCredential) 322 return Credential(identity, (CFArrayRef)[macCredential certificates], persistence); 325 return Credential([macCredential user], [macCredential password], persistence);
|
/external/webkit/WebKit/win/ |
WebURLCredential.h | 32 #include <WebCore/Credential.h> 39 static WebURLCredential* createInstance(const WebCore::Credential&); 41 WebURLCredential(const WebCore::Credential&); 68 const WebCore::Credential& credential() const; 73 WebCore::Credential m_credential;
|
WebURLCredential.cpp | 39 WebURLCredential::WebURLCredential(const Credential& credential) 41 , m_credential(credential) 55 WebURLCredential* instance = new WebURLCredential(Credential()); 60 WebURLCredential* WebURLCredential::createInstance(const Credential& credential) 62 WebURLCredential* instance = new WebURLCredential(credential); 127 m_credential = Credential(String(user, SysStringLen(user)), String(password, SysStringLen(password)), corePersistence); 167 const WebCore::Credential& WebURLCredential::credential() cons function in class:WebURLCredential [all...] |
WebURLAuthenticationChallengeSenderCFNet.cpp | 67 /* [in] */ IWebURLCredential* credential, 75 if (!credential || FAILED(credential->QueryInterface(__uuidof(WebURLCredential), (void**)&webCredential))) 78 m_client->receivedCredential(webChallenge->authenticationChallenge(), webCredential->credential());
|
/external/webkit/WebCore/platform/network/cf/ |
AuthenticationCF.h | 36 class Credential; 40 CFURLCredentialRef createCF(const Credential&); 43 Credential core(CFURLCredentialRef);
|
AuthenticationCF.cpp | 31 #include "Credential.h" 41 const Credential& proposedCredential, 79 CFURLCredentialRef credential = createCF(coreChallenge.proposedCredential()); local 81 CFURLAuthChallengeRef result = CFURLAuthChallengeCreate(0, protectionSpace, credential, 86 CFRelease(credential); 90 CFURLCredentialRef createCF(const Credential& coreCredential) 180 Credential core(CFURLCredentialRef cfCredential) 183 return Credential(); 199 return Credential(CFURLCredentialGetUsername(cfCredential), CFURLCredentialCopyPassword(cfCredential), persistence);
|
ResourceHandleCFNet.cpp | 86 // Store the preemptively used initial credential so that if we get an authentication challenge, we won't use the same one again. 87 Credential m_initialCredential; 377 // try and reuse the credential preemptively, as allowed by RFC 2617. 381 // try and reuse the credential preemptively, as allowed by RFC 2617. 387 CredentialStorage::set(Credential(d->m_user, d->m_pass, CredentialPersistenceNone), d->m_request.url()); 461 RetainPtr<CFURLCredentialRef> credential(AdoptCF, 467 CredentialStorage::set(core(credential.get()), challenge.protectionSpace(), urlToStore); 469 CFURLConnectionUseCredential(d->m_connection.get(), credential.get(), challenge.cfURLAuthChallengeRef()); 477 Credential credential = CredentialStorage::get(challenge.protectionSpace()) local 708 Credential credential = CredentialStorage::get(core(CFURLAuthChallengeGetProtectionSpace(challenge))); local [all...] |
CredentialStorageCFNet.cpp | 30 #include "Credential.h" 37 Credential CredentialStorage::getFromPersistentStorage(const ProtectionSpace& protectionSpace)
|
/packages/apps/CertInstaller/res/values/ |
strings.xml | 29 <!-- Title of dialog to name a credential --> 31 <!-- Description for the credential name input box --> 33 <!-- Title of the credential info --> 34 <!-- Description for the credential password input box --> 49 <string name="unable_to_save_cert">Unable to save the certificate. The credential storage is not enabled or properly initialized.</string> 55 <string name="cert_is_added"><xliff:g id="credential">%s</xliff:g> is installed.</string>
|
/external/ipsec-tools/src/racoon/doc/ |
README.gssapi | 14 its credential, where fqdn is the hostname on the interface that 20 mechanism above. If a credential other than GSS_C_NO_CREDENTIAL 22 credential cache if it its principal matches the desired credential. 24 it in a memory-based credential cache, part of the gss credential 34 credential that racoon will try to acquire. The default value
|
/dalvik/libcore/auth/src/main/java/javax/security/auth/ |
AuthPermission.java | 42 * refreshCredential invoke the refresh method on a credential of a 43 * refreshable credential class. 44 * destroyCredential invoke the destroy method on a credential of a 45 * destroyable credential class.
|
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
wps.h | 37 * struct wps_credential - WPS Credential 45 * @mac_addr: MAC address of the Credential receiver 46 * @cred_attr: Unparsed Credential attribute data (used only in cred_cb()); 234 * skip_cred_build: Do not build credential 237 * Credential attribute into M8 based on the current network 239 * then be used as the Credential(s). 244 * extra_cred: Additional Credential attribute(s) 247 * Credential attribute(s) for other networks into M8. If 249 * generated Credential attribute. 266 * to be set with a suitable Credential and skip_cred_build being used [all...] |
wps_attr_process.c | 93 wpa_printf(MSG_DEBUG, "WPS: Credential did not include " 108 wpa_printf(MSG_DEBUG, "WPS: Credential did not include SSID"); 131 wpa_printf(MSG_DEBUG, "WPS: Credential did not include " 148 wpa_printf(MSG_DEBUG, "WPS: Credential did not include " 178 wpa_printf(MSG_DEBUG, "WPS: Credential did not include " 197 wpa_printf(MSG_DEBUG, "WPS: Credential did not include " 280 wpa_printf(MSG_DEBUG, "WPS: Process Credential");
|
/dalvik/libcore/security/src/test/java/tests/api/javax/security/auth/ |
PrivateCredentialPermissionTest.java | 38 private final static String cred_class1 = "a.b.Credential"; 75 "a.b.Credential a.c.Principal *\"", 77 "a.b.Credential a.c.Principal_\"*\"", 78 "a.b.Credential * \"a\"" 121 PrivateCredentialPermission p2 = new PrivateCredentialPermission("a.b.Credential P1 \"abc\"", "read"); 125 PrivateCredentialPermission p6 = new PrivateCredentialPermission("a.b.Credential * \"*\"", "read"); 126 PrivateCredentialPermission p7 = new PrivateCredentialPermission("a.b.Credential P2 \"abc\"", "read");
|
/external/webkit/WebCore/platform/network/chromium/ |
SocketStreamHandle.h | 43 class Credential; 62 void receivedCredential(const AuthenticationChallenge&, const Credential&);
|