Home
last modified time | relevance | path

Searched refs:cipherlist (Results 1 – 2 of 2) sorted by relevance

/external/curl/lib/vtls/
Dgskit.c295 const char *cipherlist = data->set.str[STRING_SSL_CIPHER_LIST]; in set_ciphers() local
309 if(!cipherlist) in set_ciphers()
311 while(is_separator(*cipherlist)) /* Skip initial separators. */ in set_ciphers()
312 cipherlist++; in set_ciphers()
313 if(!*cipherlist) in set_ciphers()
319 l = strlen(cipherlist) + 1; in set_ciphers()
336 for(clp = cipherlist; *cipherlist && !is_separator(*cipherlist);) in set_ciphers()
337 cipherlist++; in set_ciphers()
338 l = cipherlist - clp; in set_ciphers()
361 while(is_separator(*cipherlist)) in set_ciphers()
[all …]
Dnss.c103 #define NUM_OF_CIPHERS sizeof(cipherlist)/sizeof(cipherlist[0])
104 static const cipher_s cipherlist[] = { variable
246 if(Curl_raw_equal(cipher, cipherlist[i].name)) { in set_ciphers()
268 if(SSL_CipherPrefSet(model, cipherlist[i].num, PR_TRUE) != SECSuccess) { in set_ciphers()
269 failf(data, "cipher-suite not supported by NSS: %s", cipherlist[i].name); in set_ciphers()
287 SSL_CipherPolicyGet(cipherlist[i].num, &policy); in any_cipher_enabled()