Searched refs:creds (Results 1 – 9 of 9) sorted by relevance
/curl/tests/http/testenv/ |
H A D | certs.py | 194 return creds[0] if len(creds) else None 206 creds = None 211 if creds is None: 226 return creds 270 name = creds.name 271 chain = [creds] 273 creds = creds.issuer 335 return creds 345 if creds is None: 349 return creds [all …]
|
H A D | nghttpx.py | 203 creds = self.env.get_credentials(self.env.domain1) 204 assert creds # convince pytype this isn't None 216 creds.pkey_file, 217 creds.cert_file, 241 creds = self.env.get_credentials(self.env.proxy_domain) 242 assert creds # convince pytype this isn't None 253 creds.pkey_file, 254 creds.cert_file,
|
H A D | vsftpd.py | 184 creds = self.env.get_credentials(self.domain) 185 assert creds # convince pytype this isn't None
|
H A D | env.py | 444 creds = self.ca.get_credentials_for_name(domain) 445 if len(creds) > 0: 446 return creds[0]
|
/curl/tests/libtest/ |
H A D | stub_gssapi.c | 65 char creds[MAX_CREDS_LENGTH]; member 97 const char *creds = NULL; in gss_init_sec_context() local 116 creds = getenv("CURL_STUB_GSS_CREDS"); in gss_init_sec_context() 117 if(!creds || strlen(creds) >= MAX_CREDS_LENGTH) { in gss_init_sec_context() 123 if(ctx && strcmp(ctx->creds, creds)) { in gss_init_sec_context() 192 if(strstr(creds, "KRB5")) in gss_init_sec_context() 195 if(strstr(creds, "NTLM")) in gss_init_sec_context() 208 strcpy(ctx->creds, creds); in gss_init_sec_context() 222 used = (size_t) snprintf(token, length, "%s:%s:%d:", creds, in gss_init_sec_context()
|
/curl/lib/vtls/ |
H A D | gtls.h | 51 gnutls_certificate_credentials_t creds; member 60 CURLcode Curl_gtls_shared_creds_up_ref(struct gtls_shared_creds *creds);
|
H A D | gtls.c | 482 DEBUGASSERT(creds); in Curl_gtls_shared_creds_up_ref() 483 if(creds->refcount < SIZE_T_MAX) { in Curl_gtls_shared_creds_up_ref() 484 ++creds->refcount; in Curl_gtls_shared_creds_up_ref() 497 gnutls_certificate_free_credentials(shared->creds); in Curl_gtls_shared_creds_free() 516 rc = gnutls_certificate_set_x509_system_trust(creds); in gtls_populate_creds() 529 gnutls_certificate_set_verify_flags(creds, in gtls_populate_creds() 532 rc = gnutls_certificate_set_x509_trust_file(creds, in gtls_populate_creds() 618 if(shared_creds && shared_creds->creds && in gtls_get_cached_creds() 644 DEBUGASSERT(sc->creds); in gtls_set_cached_creds() 975 gtls->shared_creds->creds, in gtls_client_init() [all …]
|
/curl/tests/data/ |
H A D | test381 | 39 netrc-optional lets URL creds override netrc
|
H A D | test335 | 67 HTTP with proxy Digest and site Digest with creds in URLs
|
Completed in 18 milliseconds