Home
last modified time | relevance | path

Searched refs:store (Results 1 – 25 of 93) sorted by relevance

1234

/curl/src/
H A Dtool_helpers.c87 int SetHTTPrequest(struct OperationConfig *config, HttpReq req, HttpReq *store) in SetHTTPrequest() argument
99 if((*store == HTTPREQ_UNSPEC) || in SetHTTPrequest()
100 (*store == req)) { in SetHTTPrequest()
101 *store = req; in SetHTTPrequest()
106 reqname[req], reqname[*store]); in SetHTTPrequest()
H A Dtool_helpers.h31 HttpReq *store);
/curl/lib/vtls/
H A Dx509asn1.c297 static CURLcode bit2str(struct dynbuf *store, in bit2str() argument
304 return octet2str(store, beg, end); in bit2str()
312 static CURLcode int2str(struct dynbuf *store, in int2str() argument
322 return octet2str(store, beg, end); in int2str()
450 result = Curl_dyn_addf(store, ".%u", x); in encodeOID()
481 result = encodeOID(store, beg, end); in OID2str()
544 return Curl_dyn_addf(store, in GTime2str()
625 result = Curl_dyn_addn(store, "", 1); in ASN1tostr()
713 result = Curl_dyn_add(store, str); in encodeDN()
723 result = ASN1tostr(store, &value, 0); in encodeDN()
[all …]
H A Dwolfssl.c406 if(!store) in populate_x509_store()
440 (void)store; in populate_x509_store()
460 if(share->store) { in wssl_x509_share_free()
498 WOLFSSL_X509_STORE *store = NULL; in get_cached_x509_store() local
504 if(share && share->store && in get_cached_x509_store()
507 store = share->store; in get_cached_x509_store()
510 return store; in get_cached_x509_store()
547 X509_STORE_free(store); in set_cached_x509_store()
552 if(share->store) { in set_cached_x509_store()
553 X509_STORE_free(share->store); in set_cached_x509_store()
[all …]
H A Dvtls.c654 struct Curl_ssl_session *store; in Curl_ssl_addsessionid() local
670 store = &data->state.session[0]; in Curl_ssl_addsessionid()
711 Curl_ssl_kill_session(store); in Curl_ssl_addsessionid()
721 store->sessionid = ssl_sessionid; in Curl_ssl_addsessionid()
722 store->idsize = idsize; in Curl_ssl_addsessionid()
726 free(store->name); in Curl_ssl_addsessionid()
727 free(store->conn_to_host); in Curl_ssl_addsessionid()
734 store->remote_port = peer->port; in Curl_ssl_addsessionid()
736 store->transport = peer->transport; in Curl_ssl_addsessionid()
745 store->scheme, store->name, store->remote_port, in Curl_ssl_addsessionid()
[all …]
H A Dopenssl.c3215 if(!store) in populate_x509_store()
3323 X509_STORE_set_flags(store, in populate_x509_store()
3375 if(share->store) { in oss_x509_share_free()
3413 X509_STORE *store = NULL; in get_cached_x509_store() local
3419 if(share && share->store && in get_cached_x509_store()
3422 store = share->store; in get_cached_x509_store()
3425 return store; in get_cached_x509_store()
3456 if(X509_STORE_up_ref(store)) { in set_cached_x509_store()
3462 X509_STORE_free(store); in set_cached_x509_store()
3467 if(share->store) { in set_cached_x509_store()
[all …]
/curl/docs/libcurl/opts/
H A DCURLOPT_SSLCERT.md47 certificate store. (You can import *PFX* to a store first). You can use
48 "\<store location\>\\\<store name\>\\\<thumbprint\>" to refer to a certificate
49 in the system certificates store, for example,
51 SHA-1 hex string which you can see in certificate details. Following store
H A DCURLOPT_SSL_CTX_DATA.md52 X509_STORE *store;
65 /* get a pointer to the X509 certificate store (which may be empty) */
66 store = SSL_CTX_get_cert_store((SSL_CTX *)sslctx);
68 /* add our certificate to this store */
69 if(X509_STORE_add_cert(store, cert) == 0)
H A DCURLOPT_CA_CACHE_TIMEOUT.md37 time any cached CA certificate store it has in memory may be kept and reused
41 Building a CA certificate store from a CURLOPT_CAINFO(3) file is a slow
42 operation so curl may cache the generated certificate store internally to
46 the cached store remain forever. By default, libcurl caches this info for 24
H A DCURLOPT_PRIVATE.md17 CURLOPT_PRIVATE - store a private pointer
53 /* store a pointer to our private struct */
H A DCURLOPT_SSL_CTX_FUNCTION.md96 X509_STORE *store;
109 /* get a pointer to the X509 certificate store (which may be empty) */
110 store = SSL_CTX_get_cert_store((SSL_CTX *)sslctx);
112 /* add our certificate to this store */
113 if(X509_STORE_add_cert(store, cert) == 0)
H A DCURLOPT_WRITEDATA.md48 A common technique is to use the write callback to store the incoming data
50 CURLOPT_WRITEDATA(3) is used to point to a struct or the buffer to store
H A DCURLOPT_PROXY_SSL_OPTIONS.md71 Tell libcurl to use the operating system's native CA store for certificate
74 to the native CA store.
86 certificate that supports client authentication in the OS certificate store it
H A DCURLOPT_SSL_OPTIONS.md69 Tell libcurl to use the operating system's native CA store for certificate
72 to the native CA store.
84 certificate that supports client authentication in the OS certificate store it
/curl/docs/cmdline-opts/
H A Dca-native.md20 Use the CA store from the native operating system to verify the peer. By
21 default, curl otherwise uses a CA store provided in a single file or
28 store.
H A Dproxy-ca-native.md20 Use the CA store from the native operating system to verify the HTTPS proxy.
21 By default, curl uses a CA store provided in a single file or directory, but
27 store.
H A Dcert.md49 a certificate store. (Loading *PFX* is not supported; you can import it to a
50 store first). You can use "\<store location\>\\<store name\>\\<thumbprint\>"
51 to refer to a certificate in the system certificates store, for example,
54 store locations are supported: *CurrentUser*, *LocalMachine*,
H A Dcookie-jar.md15 - -c store-here.txt $URL
16 - -c store-here.txt -b read-these $URL
H A Dno-progress-meter.md13 - --no-progress-meter -o store $URL
H A Dxattr.md19 When saving output to a file, tell curl to store file metadata in extended
H A Dssl-auto-client-cert.md20 certificate that supports client authentication in the OS certificate store it
/curl/lib/
H A Dparsedate.h30 CURLcode Curl_gmtime(time_t intime, struct tm *store);
H A Dnetrc.c120 char *store = tok; in parsenetrc() local
148 *store++ = s; in parsenetrc()
151 *store = 0; in parsenetrc()
H A Dparsedate.c628 CURLcode Curl_gmtime(time_t intime, struct tm *store) in Curl_gmtime() argument
633 tm = (struct tm *)gmtime_r(&intime, store); in Curl_gmtime()
638 *store = *tm; /* copy the pointed struct to the local copy */ in Curl_gmtime()
/curl/tests/data/
H A Dtest127018 Cache-Control: no-cache,no-store,must-revalidate,post-check=0,pre-check=0
56 Cache-Control: no-cache,no-store,must-revalidate,post-check=0,pre-check=0

Completed in 83 milliseconds

1234