Home
last modified time | relevance | path

Searched refs:backend (Results 1 – 25 of 139) sorted by relevance

123456

/curl/lib/vtls/
H A Dschannel.c1168 if(!backend->cred || !backend->ctxt) in schannel_connect_step2()
1175 backend->decdata_buffer = malloc(backend->decdata_length); in schannel_connect_step2()
1187 backend->encdata_buffer = malloc(backend->encdata_length); in schannel_connect_step2()
1195 if(backend->encdata_length - backend->encdata_offset < in schannel_connect_step2()
1266 &backend->cred->cred_handle, &backend->ctxt->ctxt_handle, in schannel_connect_step2()
1267 backend->cred->sni_hostname, backend->req_flags, in schannel_connect_step2()
1551 if(backend->ret_flags != backend->req_flags) { in schannel_connect_step3()
1974 size = backend->encdata_length - backend->encdata_offset; in schannel_recv()
1992 size = backend->encdata_length - backend->encdata_offset; in schannel_recv()
2324 if(backend->cred && backend->ctxt && !backend->sent_shutdown) { in schannel_shutdown()
[all …]
H A Dmbedtls.c480 mbedtls_ssl_conf_ciphersuites(&backend->config, backend->ciphersuites); in mbed_set_selected_ciphers()
579 DEBUGASSERT(backend);
831 ret = mbedtls_ssl_setup(&backend->ssl, &backend->config);
913 &backend->clicert, &backend->pk);
987 DEBUGASSERT(backend);
1133 DEBUGASSERT(backend);
1186 DEBUGASSERT(backend);
1220 DEBUGASSERT(backend);
1305 DEBUGASSERT(backend);
1334 DEBUGASSERT(backend);
[all …]
H A Dwolfssl.c323 if(backend->shutting_down && backend->io_send_blocked_len && in wolfssl_bio_cf_out_write()
342 if(backend->shutting_down && !backend->io_send_blocked_len) in wolfssl_bio_cf_out_write()
857 DEBUGASSERT(backend); in wolfssl_connect_step1()
872 if(backend->ctx) in wolfssl_connect_step1()
876 if(!backend->ctx) { in wolfssl_connect_step1()
1141 if(backend->handle) in wolfssl_connect_step1()
1143 backend->handle = wolfSSL_new(backend->ctx); in wolfssl_connect_step1()
1336 DEBUGASSERT(backend); in wolfssl_connect_step2()
1572 DEBUGASSERT(backend); in wolfssl_send()
1728 if(backend->ctx) { in wolfssl_close()
[all …]
H A Dbearssl.c550 DEBUGASSERT(backend); in bearssl_connect_step1()
561 ret = load_cafile(&source, &backend->anchors, &backend->anchors_len); in bearssl_connect_step1()
575 ret = load_cafile(&source, &backend->anchors, &backend->anchors_len); in bearssl_connect_step1()
585 br_ssl_client_init_full(&backend->ctx, &backend->x509.minimal, in bearssl_connect_step1()
586 backend->anchors, backend->anchors_len); in bearssl_connect_step1()
592 br_ssl_engine_set_buffer(&backend->ctx.eng, backend->buf, in bearssl_connect_step1()
609 br_ssl_engine_set_x509(&backend->ctx.eng, &backend->x509.vtable); in bearssl_connect_step1()
635 br_ssl_engine_set_protocol_names(&backend->ctx.eng, backend->protocols, in bearssl_connect_step1()
693 DEBUGASSERT(backend); in bearssl_run_until()
770 DEBUGASSERT(backend); in bearssl_connect_step2()
[all …]
H A Drustls.c81 backend = (struct rustls_ssl_backend_data *)ctx->backend; in cr_data_pending()
205 DEBUGASSERT(backend); in cr_recv()
206 rconn = backend->conn; in cr_recv()
336 DEBUGASSERT(backend); in cr_send()
337 rconn = backend->conn; in cr_send()
548 DEBUGASSERT(backend); in cr_init_backend()
747 &backend->config); in cr_init_backend()
810 DEBUGASSERT(backend); in cr_connect_common()
814 if(!backend->conn) { in cr_connect_common()
963 DEBUGASSERT(backend); in cr_get_internals()
[all …]
H A Dgtls.c253 DEBUGASSERT(backend); in handshake()
1182 DEBUGASSERT(backend); in gtls_connect_step1()
1835 DEBUGASSERT(backend); in gtls_connect_common()
1971 backend = (struct gtls_ssl_backend_data *)ctx->backend; in gtls_data_pending()
1972 if(backend->gtls.session && in gtls_data_pending()
1990 DEBUGASSERT(backend); in gtls_send()
2034 (backend->gtls.io_result ? backend->gtls.io_result : CURLE_SEND_ERROR); in gtls_send()
2067 DEBUGASSERT(backend); in gtls_shutdown()
2137 DEBUGASSERT(backend); in gtls_close()
2166 DEBUGASSERT(backend); in gtls_recv()
[all …]
H A Dsectransp.c1051 DEBUGASSERT(backend);
1059 if(backend->ssl_ctx)
1070 if(backend->ssl_ctx)
1080 if(backend->ssl_ctx)
1809 DEBUGASSERT(backend);
2186 DEBUGASSERT(backend);
2191 if(!backend->ssl_ctx)
2431 DEBUGASSERT(backend);
2507 DEBUGASSERT(backend);
2540 DEBUGASSERT(backend);
[all …]
/curl/docs/libcurl/
H A Dcurl_global_sslset.md17 curl_global_sslset - select SSL backend to use
31 This function configures at runtime which SSL backend to use with
32 libcurl. This function can only be used to select an SSL backend once, and it
35 The backend can be identified by the *id*
36 (e.g. **CURLSSLBACKEND_OPENSSL**). The backend can also be specified via the
51 If the specified SSL backend is not available, the function returns
54 function again to try to select a different backend.
112 /* choose a specific backend */
120 printf("SSL backend #%d: '%s' (ID: %d)\n",
129 If this function returns *CURLSSLSET_OK*, the backend was successfully
[all …]
/curl/docs/libcurl/opts/
H A DCURLOPT_SSL_EC_CURVES.md13 TLS-backend:
35 SSL handshake (if the SSL backend libcurl is built to use supports it).
45 "", embedded in SSL backend
H A DCURLOPT_SSL_ENABLE_ALPN.md12 TLS-backend:
32 option enables/disables ALPN in the SSL handshake (if the SSL backend libcurl
H A DCURLOPT_SSL_ENABLE_NPN.md12 TLS-backend:
34 option enables/disables NPN in the SSL handshake (if the SSL backend libcurl
H A DCURLOPT_SSLENGINE_DEFAULT.md12 TLS-backend:
67 CURLE_NOT_BUILT_IN - Option not built in, OpenSSL is not the SSL backend.
H A DCURLOPT_SSL_FALSESTART.md11 TLS-backend:
61 Returns CURLE_OK if false start is supported by the SSL backend, otherwise
H A DCURLOPT_SSL_VERIFYSTATUS.md13 TLS-backend:
68 Returns CURLE_OK if OCSP stapling is supported by the SSL backend, otherwise
H A DCURLOPT_DOH_SSL_VERIFYSTATUS.md13 TLS-backend:
76 Returns CURLE_OK if OCSP stapling is supported by the SSL backend, otherwise
H A DCURLOPT_SSLENGINE.md13 TLS-backend:
74 CURLE_NOT_BUILT_IN - Option not built in, OpenSSL is not the SSL backend.
H A DCURLOPT_DNS_INTERFACE.md66 This option requires that libcurl was built with a resolver backend that
67 supports this operation. The c-ares backend is the only such one.
H A DCURLOPT_DNS_SERVERS.md70 This option requires that libcurl was built with a resolver backend that
71 supports this operation. The c-ares backend is the only such one.
H A DCURLINFO_TLS_SESSION.md13 TLS-backend:
39 case of OpenSSL. If the session *backend* is CURLSSLBACKEND_OPENSSL the
H A DCURLINFO_TLS_SSL_PTR.md13 TLS-backend:
56 curl_sslbackend backend;
61 The *backend* struct member is one of the defines in the CURLSSLBACKEND_*
101 If the *internals* pointer is NULL then either the SSL backend is not
151 if(CURLSSLBACKEND_OPENSSL == info->backend) {
H A DCURLOPT_DNS_LOCAL_IP4.md65 This option requires that libcurl was built with a resolver backend that
66 supports this operation. The c-ares backend is the only such one.
H A DCURLOPT_DNS_LOCAL_IP6.md65 This option requires that libcurl was built with a resolver backend that
66 supports this operation. The c-ares backend is the only such one.
H A DCURLOPT_RESOLVER_START_FUNCTION.md39 *resolver_state* points to a backend-specific resolver state. Currently only
40 the ares resolver backend has a resolver state. It can be used to set up any
/curl/docs/cmdline-opts/
H A Dssl-reqd.md24 OpenLDAP backend and rejected by the generic ldap backend if explicit TLS is
H A Dssl.md29 OpenLDAP backend and ignored by the generic ldap backend.

Completed in 67 milliseconds

123456