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

123

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitCredential.cpp31 : credential(coreCredential)
35 WebCore::Credential credential; member in struct:_WebKitCredential
74 WebKitCredential* credential = g_slice_new(WebKitCredential); local
75 new (credential) WebKitCredential(coreCredential);
76 return credential;
79 const WebCore::Credential& webkitCredentialGetCredential(WebKitCredential* credential) argument
81 ASSERT(credential);
82 return credential->credential;
87 * @username: The username for the new credential
115 webkit_credential_copy(WebKitCredential* credential) argument
130 webkit_credential_free(WebKitCredential* credential) argument
148 webkit_credential_get_username(WebKitCredential* credential) argument
167 webkit_credential_get_password(WebKitCredential* credential) argument
186 webkit_credential_has_password(WebKitCredential* credential) argument
203 webkit_credential_get_persistence(WebKitCredential* credential) argument
[all...]
H A DWebKitCredential.h42 * Enum values representing the duration for which a credential persists.
61 webkit_credential_copy (WebKitCredential *credential);
64 webkit_credential_free (WebKitCredential *credential);
67 webkit_credential_get_username (WebKitCredential *credential);
70 webkit_credential_get_password (WebKitCredential *credential);
73 webkit_credential_has_password (WebKitCredential *credential);
76 webkit_credential_get_persistence (WebKitCredential *credential);
H A DWebKitAuthenticationRequest.cpp153 * This will return %FALSE if webkit doesn't support credential storing
179 * Returns: (transfer full): A #WebKitCredential encapsulating credential details
180 * or %NULL if there is no stored credential.
188 const WebCore::Credential& credential = request->priv->authenticationChallenge->proposedCredential()->credential(); local
189 if (credential.isEmpty())
192 return webkitCredentialCreate(credential);
304 * @credential: (transfer none) (allow-none): A #WebKitCredential, or %NULL
307 * supplied. To continue without credentials, pass %NULL as @credential.
311 void webkit_authentication_request_authenticate(WebKitAuthenticationRequest* request, WebKitCredential* credential) argument
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/Authentication/
H A DWebCredential.cpp33 WebCredential::WebCredential(const WebCore::Credential& credential) argument
34 : m_coreCredential(credential)
52 const WebCore::Credential& WebCredential::credential() function in class:WebKit::WebCredential
H A DAuthenticationDecisionListener.cpp43 void AuthenticationDecisionListener::useCredential(WebCredential* credential) argument
46 m_challengeProxy->useCredential(credential);
H A DAuthenticationChallengeProxy.cpp60 void AuthenticationChallengeProxy::useCredential(WebCredential* credential) argument
68 if (!credential) {
74 if (credential->certificateInfo())
75 certificateInfo = credential->certificateInfo()->certificateInfo();
77 m_connection->send(Messages::AuthenticationManager::UseCredentialForChallenge(challengeID, credential->credential(), certificateInfo), 0);
H A DWebCredential.h42 static PassRefPtr<WebCredential> create(const WebCore::Credential& credential) argument
44 return adoptRef(new WebCredential(credential));
54 const WebCore::Credential& credential();
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/C/
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);
H A DWKCredential.cpp53 return toCopiedAPI(toImpl(credentialRef)->credential().user());
/macosx-10.10.1/WebKit-7600.1.25/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.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 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
H A DWebURLAuthenticationChallengeSender.h60 /* [in] */ IWebURLCredential* credential,
H A DWebURLCredential.h65 const WebCore::Credential& credential() const;
/macosx-10.10.1/Heimdal-398.1.2/kuser/
H A Dkdestroy.c39 static const char *credential; variable
50 { "credential", 0, arg_string, rk_UNCONST(&credential),
51 "remove one credential", "principal" },
53 { "principal", 'p', arg_string, &principal_str, "client credential to destroy", "principal" },
125 krb5_errx(context, 1, "Can't select on credential "
153 if (credential) {
158 ret = krb5_parse_name(context, credential, &mcred.server);
161 "Can't parse principal %s", credential);
166 "Failed to remove principal %s", credential);
[all...]
/macosx-10.10.1/Heimdal-398.1.2/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.10.1/WebKit2-7600.1.25/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.10.1/Heimdal-398.1.2/tests/GSSTestApp/GSSTestAppOSX/
H A DCredentialTesterView.h26 - (id)initWithGSSCredential:(gss_cred_id_t)credential;
/macosx-10.10.1/WebKit2-7600.1.25/Shared/Authentication/mac/
H A DAuthenticationManager.mac.mm60 NSURLCredential *credential = [NSURLCredential credentialWithIdentity:identity
64 [challenge.sender() useCredential:credential forAuthenticationChallenge:challenge.nsURLAuthenticationChallenge()];
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/cf/
H A Dcredential.c43 * credential (for example PK-U2U, SCRAM, NTLM or IAKERB), for those
45 * force validation of the credential.
49 * @param desired_name name to use to acquire credential. Import the name using gss_import_name(). The type of the name has to be supported by the desired_mech used.
51 * @param desired_mech mechanism to use to acquire credential. GSS_C_NO_OID is not valid input and a mechanism must be selected. For example GSS_KRB5_MECHANISM, GSS_NTLM_MECHNISM or any other mechanisms supported by the implementation. See gss_indicate_mechs().
53 * @param attributes CFDictionary that contains how to acquire the credential, see below for examples
55 * @param output_cred_handle the resulting credential handle, value is set to GSS_C_NO_CREDENTIAL on failure.
67 * * kGSSICVerifyCredential - validate the credential with a trusted source that there was no MITM
70 * * kGSSICAppIdentifierACL - CFArrayRef[CFStringRef] prefix of bundle ID allowed to access this credential
85 gss_buffer_desc credential; local
92 credential
299 GSSCredentialCopyUUID(gss_cred_id_t credential) argument
[all...]
/macosx-10.10.1/WebKit-7600.1.25/mac/Panels/
H A DWebAuthenticationPanel.m239 NSURLCredential *credential = nil;
242 credential = [[NSURLCredential alloc] initWithUser:[username stringValue] password:[password stringValue] persistence:([remember state] == NSOnState) ? NSURLCredentialPersistencePermanent : NSURLCredentialPersistenceForSession];
245 [callback performSelector:selector withObject:chall withObject:credential];
246 [credential release];
271 NSURLCredential *credential = nil;
278 credential = [[NSURLCredential alloc] initWithUser:[username stringValue] password:[password stringValue] persistence:([remember state] == NSOnState) ? NSURLCredentialPersistencePermanent : NSURLCredentialPersistenceForSession];
285 [callback performSelector:selector withObject:chall withObject:credential];
286 [credential release];
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKNSURLAuthenticationChallenge.mm86 - (void)useCredential:(NSURLCredential *)credential forAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
90 webChallenge.listener()->useCredential(WebCredential::create(core(credential)).get());
/macosx-10.10.1/cups-408/cups/cups/
H A Dtls-darwin.c54 static SecCertificateRef http_cdsa_create_credential(http_credential_t *credential);
426 http_credential_t *credential; /* Credential data */ local
437 for (credential = (http_credential_t *)cupsArrayFirst(credentials);
438 credential;
439 credential = (http_credential_t *)cupsArrayNext(credentials))
441 if ((secCert = http_cdsa_create_credential(credential)) != NULL)
994 http_credential_t *credential; /* Credential data */ local
1227 if ((credential = malloc(sizeof(*credential))) != NULL)
1229 credential
1485 http_cdsa_create_credential( http_credential_t *credential) argument
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/Authentication/
H A DAuthenticationManager.cpp107 void AuthenticationManager::useCredentialForChallenge(uint64_t challengeID, const Credential& credential, const CertificateInfo& certificateInfo) argument
120 Download::receivedCredential(challenge, credential);
124 coreClient->receivedCredential(challenge, credential);

Completed in 124 milliseconds

123