Home
last modified time | relevance | path

Searched refs:s_pSecFn (Results 1 – 8 of 8) sorted by relevance

/external/curl/lib/
Dsocks_sspi.c138 status = s_pSecFn->AcquireCredentialsHandle(NULL, in Curl_SOCKS5_gssapi_negotiate()
151 s_pSecFn->FreeCredentialsHandle(&cred_handle); in Curl_SOCKS5_gssapi_negotiate()
164 status = s_pSecFn->InitializeSecurityContext(&cred_handle, in Curl_SOCKS5_gssapi_negotiate()
183 s_pSecFn->FreeContextBuffer(sspi_recv_token.pvBuffer); in Curl_SOCKS5_gssapi_negotiate()
190 s_pSecFn->FreeCredentialsHandle(&cred_handle); in Curl_SOCKS5_gssapi_negotiate()
191 s_pSecFn->DeleteSecurityContext(&sspi_context); in Curl_SOCKS5_gssapi_negotiate()
193 s_pSecFn->FreeContextBuffer(sspi_recv_token.pvBuffer); in Curl_SOCKS5_gssapi_negotiate()
209 s_pSecFn->FreeContextBuffer(sspi_send_token.pvBuffer); in Curl_SOCKS5_gssapi_negotiate()
211 s_pSecFn->FreeContextBuffer(sspi_recv_token.pvBuffer); in Curl_SOCKS5_gssapi_negotiate()
212 s_pSecFn->FreeCredentialsHandle(&cred_handle); in Curl_SOCKS5_gssapi_negotiate()
[all …]
Dcurl_sspi.c55 PSecurityFunctionTable s_pSecFn = NULL; variable
99 s_pSecFn = pInitSecurityInterface(); in Curl_sspi_global_init()
100 if(!s_pSecFn) in Curl_sspi_global_init()
121 s_pSecFn = NULL; in Curl_sspi_global_cleanup()
Dcurl_sspi.h59 extern PSecurityFunctionTable s_pSecFn;
/external/curl/lib/vauth/
Ddigest_sspi.c61 status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_DIGEST), in Curl_auth_is_digest_supported()
127 status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_DIGEST), in Curl_auth_create_digest_md5_message()
138 s_pSecFn->FreeContextBuffer(SecurityPackage); in Curl_auth_create_digest_md5_message()
176 status = s_pSecFn->AcquireCredentialsHandle(NULL, in Curl_auth_create_digest_md5_message()
208 status = s_pSecFn->InitializeSecurityContext(&credentials, NULL, spn, in Curl_auth_create_digest_md5_message()
215 s_pSecFn->CompleteAuthToken(&credentials, &resp_desc); in Curl_auth_create_digest_md5_message()
217 s_pSecFn->FreeCredentialsHandle(&credentials); in Curl_auth_create_digest_md5_message()
231 s_pSecFn->DeleteSecurityContext(&context); in Curl_auth_create_digest_md5_message()
232 s_pSecFn->FreeCredentialsHandle(&credentials); in Curl_auth_create_digest_md5_message()
424 status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_DIGEST), in Curl_auth_create_digest_http_message()
[all …]
Dkrb5_sspi.c57 status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) in Curl_auth_is_gssapi_supported()
119 status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) in Curl_auth_create_gssapi_user_message()
129 s_pSecFn->FreeContextBuffer(SecurityPackage); in Curl_auth_create_gssapi_user_message()
160 status = s_pSecFn->AcquireCredentialsHandle(NULL, in Curl_auth_create_gssapi_user_message()
210 status = s_pSecFn->InitializeSecurityContext(krb5->credentials, in Curl_auth_create_gssapi_user_message()
229 s_pSecFn->DeleteSecurityContext(krb5->context); in Curl_auth_create_gssapi_user_message()
310 status = s_pSecFn->QueryContextAttributes(krb5->context, in Curl_auth_create_gssapi_security_message()
320 status = s_pSecFn->QueryCredentialsAttributes(krb5->credentials, in Curl_auth_create_gssapi_security_message()
341 status = s_pSecFn->DecryptMessage(krb5->context, &input_desc, 0, &qop); in Curl_auth_create_gssapi_security_message()
361 s_pSecFn->FreeContextBuffer(input_buf[1].pvBuffer); in Curl_auth_create_gssapi_security_message()
[all …]
Dntlm_sspi.c56 status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_NTLM), in Curl_auth_is_ntlm_supported()
97 status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_NTLM), in Curl_auth_create_ntlm_type1_message()
105 s_pSecFn->FreeContextBuffer(SecurityPackage); in Curl_auth_create_ntlm_type1_message()
135 status = s_pSecFn->AcquireCredentialsHandle(NULL, in Curl_auth_create_ntlm_type1_message()
159 status = s_pSecFn->InitializeSecurityContext(ntlm->credentials, NULL, in Curl_auth_create_ntlm_type1_message()
167 s_pSecFn->CompleteAuthToken(ntlm->context, &type_1_desc); in Curl_auth_create_ntlm_type1_message()
276 status = s_pSecFn->InitializeSecurityContext(ntlm->credentials, in Curl_auth_create_ntlm_type3_message()
314 s_pSecFn->DeleteSecurityContext(ntlm->context); in Curl_auth_ntlm_cleanup()
321 s_pSecFn->FreeCredentialsHandle(ntlm->credentials); in Curl_auth_ntlm_cleanup()
Dspnego_sspi.c58 status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) in Curl_auth_is_spnego_supported()
123 nego->status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) in Curl_auth_decode_spnego_message()
132 s_pSecFn->FreeContextBuffer(SecurityPackage); in Curl_auth_decode_spnego_message()
164 s_pSecFn->AcquireCredentialsHandle(NULL, in Curl_auth_decode_spnego_message()
213 nego->status = s_pSecFn->InitializeSecurityContext(nego->credentials, in Curl_auth_decode_spnego_message()
235 nego->status = s_pSecFn->CompleteAuthToken(nego->context, &resp_desc); in Curl_auth_decode_spnego_message()
299 s_pSecFn->DeleteSecurityContext(nego->context); in Curl_auth_spnego_cleanup()
306 s_pSecFn->FreeCredentialsHandle(nego->credentials); in Curl_auth_spnego_cleanup()
/external/curl/lib/vtls/
Dschannel.c370 s_pSecFn->AcquireCredentialsHandle(NULL, (TCHAR *)UNISP_NAME, in schannel_connect_step1()
480 sspi_status = s_pSecFn->InitializeSecurityContext( in schannel_connect_step1()
505 s_pSecFn->FreeContextBuffer(outbuf.pvBuffer); in schannel_connect_step1()
654 sspi_status = s_pSecFn->InitializeSecurityContext( in schannel_connect_step2()
705 s_pSecFn->FreeContextBuffer(outbuf[i].pvBuffer); in schannel_connect_step2()
815 sspi_status = s_pSecFn->QueryContextAttributes(&BACKEND->ctxt->ctxt_handle, in schannel_connect_step3()
883 sspi_status = s_pSecFn->QueryContextAttributes(&BACKEND->ctxt->ctxt_handle, in schannel_connect_step3()
1038 sspi_status = s_pSecFn->QueryContextAttributes( in schannel_send()
1077 sspi_status = s_pSecFn->EncryptMessage(&BACKEND->ctxt->ctxt_handle, 0, in schannel_send()
1292 sspi_status = s_pSecFn->DecryptMessage(&BACKEND->ctxt->ctxt_handle, in schannel_recv()
[all …]