Home
last modified time | relevance | path

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

/external/curl/lib/
Dsocks_sspi.c134 status = s_pSecFn->AcquireCredentialsHandle(NULL, in Curl_SOCKS5_gssapi_negotiate()
147 s_pSecFn->FreeCredentialsHandle(&cred_handle); in Curl_SOCKS5_gssapi_negotiate()
160 status = s_pSecFn->InitializeSecurityContext(&cred_handle, in Curl_SOCKS5_gssapi_negotiate()
179 s_pSecFn->FreeContextBuffer(sspi_recv_token.pvBuffer); in Curl_SOCKS5_gssapi_negotiate()
186 s_pSecFn->FreeCredentialsHandle(&cred_handle); in Curl_SOCKS5_gssapi_negotiate()
187 s_pSecFn->DeleteSecurityContext(&sspi_context); in Curl_SOCKS5_gssapi_negotiate()
189 s_pSecFn->FreeContextBuffer(sspi_recv_token.pvBuffer); in Curl_SOCKS5_gssapi_negotiate()
205 s_pSecFn->FreeContextBuffer(sspi_send_token.pvBuffer); in Curl_SOCKS5_gssapi_negotiate()
207 s_pSecFn->FreeContextBuffer(sspi_recv_token.pvBuffer); in Curl_SOCKS5_gssapi_negotiate()
208 s_pSecFn->FreeCredentialsHandle(&cred_handle); in Curl_SOCKS5_gssapi_negotiate()
[all …]
Dcurl_sasl_sspi.c155 status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_DIGEST), in Curl_sasl_create_digest_md5_message()
166 s_pSecFn->FreeContextBuffer(SecurityPackage); in Curl_sasl_create_digest_md5_message()
204 status = s_pSecFn->AcquireCredentialsHandle(NULL, in Curl_sasl_create_digest_md5_message()
236 status = s_pSecFn->InitializeSecurityContext(&credentials, NULL, spn, in Curl_sasl_create_digest_md5_message()
243 s_pSecFn->CompleteAuthToken(&credentials, &resp_desc); in Curl_sasl_create_digest_md5_message()
245 s_pSecFn->FreeCredentialsHandle(&credentials); in Curl_sasl_create_digest_md5_message()
259 s_pSecFn->DeleteSecurityContext(&context); in Curl_sasl_create_digest_md5_message()
260 s_pSecFn->FreeCredentialsHandle(&credentials); in Curl_sasl_create_digest_md5_message()
425 status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) TEXT(SP_NAME_DIGEST), in Curl_sasl_create_digest_http_message()
433 s_pSecFn->FreeContextBuffer(SecurityPackage); in Curl_sasl_create_digest_http_message()
[all …]
Dhttp_negotiate_sspi.c107 status = s_pSecFn->QuerySecurityPackageInfo((TCHAR *) in Curl_input_negotiate()
117 s_pSecFn->FreeContextBuffer(SecurityPackage); in Curl_input_negotiate()
156 s_pSecFn->AcquireCredentialsHandle(NULL, in Curl_input_negotiate()
198 neg_ctx->status = s_pSecFn->InitializeSecurityContext( in Curl_input_negotiate()
219 neg_ctx->status = s_pSecFn->CompleteAuthToken(neg_ctx->context, in Curl_input_negotiate()
268 s_pSecFn->DeleteSecurityContext(neg_ctx->context); in cleanup()
275 s_pSecFn->FreeCredentialsHandle(neg_ctx->credentials); in cleanup()
Dcurl_sspi.c54 PSecurityFunctionTable s_pSecFn = NULL; variable
128 s_pSecFn = pInitSecurityInterface(); in Curl_sspi_global_init()
129 if(!s_pSecFn) in Curl_sspi_global_init()
147 s_pSecFn = NULL; in Curl_sspi_global_cleanup()
Dcurl_sspi.h59 extern PSecurityFunctionTable s_pSecFn;
/external/curl/lib/vtls/
Dschannel.c186 s_pSecFn->AcquireCredentialsHandle(NULL, (TCHAR *)UNISP_NAME, in schannel_connect_step1()
237 sspi_status = s_pSecFn->InitializeSecurityContext( in schannel_connect_step1()
261 s_pSecFn->FreeContextBuffer(outbuf.pvBuffer); in schannel_connect_step1()
404 sspi_status = s_pSecFn->InitializeSecurityContext( in schannel_connect_step2()
454 s_pSecFn->FreeContextBuffer(outbuf[i].pvBuffer); in schannel_connect_step2()
715 sspi_status = s_pSecFn->QueryContextAttributes( in schannel_send()
755 sspi_status = s_pSecFn->EncryptMessage(&connssl->ctxt->ctxt_handle, 0, in schannel_send()
969 sspi_status = s_pSecFn->DecryptMessage(&connssl->ctxt->ctxt_handle, in schannel_recv()
1222 sspi_status = s_pSecFn->ApplyControlToken(&connssl->ctxt->ctxt_handle, in Curl_schannel_shutdown()
1237 sspi_status = s_pSecFn->InitializeSecurityContext( in Curl_schannel_shutdown()
[all …]