Searched refs:credential (Results 1 - 25 of 75) sorted by relevance

123

/macosx-10.9.5/WebCore-7537.78.1/platform/network/mac/
H A DCredentialStorageMac.mm38 NSURLCredential *credential = [[NSURLCredentialStorage sharedCredentialStorage] defaultCredentialForProtectionSpace:mac(protectionSpace)];
39 return credential ? core(credential) : Credential();
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKCredential.cpp43 RefPtr<WebCredential> credential = WebCredential::create(toImpl(username), toImpl(password), toCredentialPersistence(persistence)); local
44 return toAPI(credential.release().leakRef());
49 RefPtr<WebCredential> credential = WebCredential::create(toImpl(certificateInfo)); local
50 return toAPI(credential.release().leakRef());
H A DWKAuthenticationDecisionListener.cpp39 void WKAuthenticationDecisionListenerUseCredential(WKAuthenticationDecisionListenerRef authenticationListener, WKCredentialRef credential) argument
41 toImpl(authenticationListener)->useCredential(toImpl(credential));
H A DWKAuthenticationDecisionListener.h37 WK_EXPORT void WKAuthenticationDecisionListenerUseCredential(WKAuthenticationDecisionListenerRef authenticationListener, WKCredentialRef credential);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/Authentication/
H A DAuthenticationDecisionListener.cpp43 void AuthenticationDecisionListener::useCredential(WebCredential* credential) argument
46 m_challengeProxy->useCredential(credential);
H A DWebCredential.cpp33 WebCredential::WebCredential(const WebCore::Credential& credential) argument
34 : m_coreCredential(credential)
H A DAuthenticationChallengeProxy.cpp60 void AuthenticationChallengeProxy::useCredential(WebCredential* credential) argument
65 if (!credential)
68 WebCertificateInfo* certificateInfo = credential->certificateInfo();
70 m_connection->send(Messages::AuthenticationManager::UseCredentialForChallenge(m_challengeID, credential->core(), platformInfo), 0);
H A DWebCredential.h44 static PassRefPtr<WebCredential> create(const WebCore::Credential& credential) argument
46 return adoptRef(new WebCredential(credential));
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebURLAuthenticationChallengeSenderCFNet.cpp64 /* [in] */ IWebURLCredential* credential,
72 if (!credential || FAILED(credential->QueryInterface(__uuidof(WebURLCredential), (void**)&webCredential)))
75 m_client->receivedCredential(webChallenge->authenticationChallenge(), webCredential->credential());
63 useCredential( IWebURLCredential* credential, IWebURLAuthenticationChallenge* challenge) argument
H A DWebURLAuthenticationChallengeSenderCurl.cpp57 /* [in] */ IWebURLCredential* credential,
56 useCredential( IWebURLCredential* credential, IWebURLAuthenticationChallenge* challenge) argument
H A DWebURLCredential.cpp37 WebURLCredential::WebURLCredential(const Credential& credential) argument
39 , m_credential(credential)
58 WebURLCredential* WebURLCredential::createInstance(const Credential& credential) argument
60 WebURLCredential* instance = new WebURLCredential(credential);
165 const WebCore::Credential& WebURLCredential::credential() const function in class:WebURLCredential
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/
H A DDownloadAuthenticationClient.cpp41 void DownloadAuthenticationClient::receivedCredential(const AuthenticationChallenge& challenge, const Credential& credential) argument
45 m_download->useCredential(challenge, credential);
/macosx-10.9.5/WebCore-7537.78.1/platform/mediastream/
H A DRTCConfiguration.h46 static PassRefPtr<RTCIceServer> create(const KURL& uri, const String& credential) argument
48 return adoptRef(new RTCIceServer(uri, credential));
53 const String& credential() { return m_credential; } function in class:WebCore::RTCIceServer
56 RTCIceServer(const KURL& uri, const String& credential) argument
58 , m_credential(credential)
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DCredentialManager.cpp75 if (!data.isValid() || data.credential().isEmpty() || credentialBackingStore().hasNeverRemember(data.protectionSpace()))
79 if (savedCredential == data.credential())
85 credentialBackingStore().addLogin(data.protectionSpace(), data.credential());
87 credentialBackingStore().updateLogin(data.protectionSpace(), data.credential());
90 credentialBackingStore().removeLogin(data.protectionSpace(), data.credential().user());
H A DCredentialTransformData.cpp106 CredentialTransformData::CredentialTransformData(const ProtectionSpace& protectionSpace, const Credential& credential) argument
108 , m_credential(credential)
116 Credential CredentialTransformData::credential() const function in class:WebCore::CredentialTransformData
123 void CredentialTransformData::setCredential(const Credential& credential) argument
128 m_credential = credential;
129 m_userNameElement->setValue(credential.user());
131 m_passwordElement->setValue(credential.password());
H A DCredentialTransformData.h43 Credential credential() const;
/macosx-10.9.5/Heimdal-323.92.1/kuser/
H A Dkdestroy.c37 static const char *credential; variable
48 { "credential", 0, arg_string, rk_UNCONST(&credential),
49 "remove one credential", "principal" },
51 { "principal", 'p', arg_string, &principal_str, "client credential to destroy", "principal" },
123 krb5_errx(context, 1, "Can't select on credential "
151 if (credential) {
156 ret = krb5_parse_name(context, credential, &mcred.server);
159 "Can't parse principal %s", credential);
164 "Failed to remove principal %s", credential);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/soup/
H A DAuthenticationChallenge.h52 void setProposedCredential(const Credential& credential) { m_proposedCredential = credential; } argument
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/mech/
H A Dcred.c69 _gss_mg_check_credential(gss_cred_id_t credential) argument
71 if (credential == NULL) return;
76 gss_cred_id_t credential,
79 struct _gss_cred *cred = (struct _gss_cred *)credential;
75 _gss_cred_copy_name(OM_uint32 *minor_status, gss_cred_id_t credential, gss_const_OID mech) argument
/macosx-10.9.5/Heimdal-323.92.1/tests/GSSTestApp/GSSTestAppOSX/
H A DCredentialTesterView.h23 - (id)initWithGSSCredential:(gss_cred_id_t)credential;
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Authentication/mac/
H A DAuthenticationManager.mac.mm59 NSURLCredential *credential = [NSURLCredential credentialWithIdentity:identity
63 [challenge.sender() useCredential:credential forAuthenticationChallenge:challenge.nsURLAuthenticationChallenge()];
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_auth_request.cpp55 WKRetainPtr<WKCredentialRef> credential = WKAuthenticationChallengeGetProposedCredential(m_authenticationChallenge.get()); local
56 ASSERT(credential);
58 WKRetainPtr<WKStringRef> suggestedUsername(AdoptWK, WKCredentialCopyUser(credential.get()));
120 WKRetainPtr<WKCredentialRef> credential(AdoptWK, WKCredentialCreate(wkUsername.get(), wkPassword.get(), kWKCredentialPersistenceForSession));
122 WKAuthenticationDecisionListenerUseCredential(decisionListener, credential.get());
/macosx-10.9.5/WebCore-7537.78.1/platform/network/gtk/
H A DCredentialBackingStore.cpp50 static GRefPtr<GHashTable> createAttributeHashTableFromChallenge(const AuthenticationChallenge& challenge, const Credential& credential = Credential())
61 if (credential.isEmpty())
64 g_hash_table_insert(attributes.get(), g_strdup("user"), g_strdup(credential.user().utf8().data()));
125 void CredentialBackingStore::storeCredentialsForChallenge(const AuthenticationChallenge& challenge, const Credential& credential) argument
128 CString utf8Password = credential.password().utf8();
134 createAttributeHashTableFromChallenge(challenge, credential).get(),
/macosx-10.9.5/WebKit-7537.78.2/mac/Panels/
H A DWebAuthenticationPanel.m229 NSURLCredential *credential = nil;
232 credential = [[NSURLCredential alloc] initWithUser:[username stringValue] password:[password stringValue] persistence:([remember state] == NSOnState) ? NSURLCredentialPersistencePermanent : NSURLCredentialPersistenceForSession];
235 [callback performSelector:selector withObject:chall withObject:credential];
236 [credential release];
254 NSURLCredential *credential = nil;
261 credential = [[NSURLCredential alloc] initWithUser:[username stringValue] password:[password stringValue] persistence:([remember state] == NSOnState) ? NSURLCredentialPersistencePermanent : NSURLCredentialPersistenceForSession];
268 [callback performSelector:selector withObject:chall withObject:credential];
269 [credential release];
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/curl/
H A DDownloadCurl.cpp61 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential) argument

Completed in 135 milliseconds

123