Home
last modified time | relevance | path

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

/external/curl/lib/vtls/
Dgskit.c300 const char *cipherlist = SSL_CONN_CONFIG(cipher_list); in set_ciphers() local
314 if(!cipherlist) in set_ciphers()
316 while(is_separator(*cipherlist)) /* Skip initial separators. */ in set_ciphers()
317 cipherlist++; in set_ciphers()
318 if(!*cipherlist) in set_ciphers()
324 l = strlen(cipherlist) + 1; in set_ciphers()
341 for(clp = cipherlist; *cipherlist && !is_separator(*cipherlist);) in set_ciphers()
342 cipherlist++; in set_ciphers()
343 l = cipherlist - clp; in set_ciphers()
366 while(is_separator(*cipherlist)) in set_ciphers()
[all …]
Dnss.c102 #define NUM_OF_CIPHERS sizeof(cipherlist)/sizeof(cipherlist[0])
103 static const cipher_s cipherlist[] = { variable
264 if(strcasecompare(cipher, cipherlist[i].name)) { in set_ciphers()
286 if(SSL_CipherPrefSet(model, cipherlist[i].num, PR_TRUE) != SECSuccess) { in set_ciphers()
287 failf(data, "cipher-suite not supported by NSS: %s", cipherlist[i].name); in set_ciphers()
305 SSL_CipherPolicyGet(cipherlist[i].num, &policy); in any_cipher_enabled()
/external/python/cpython2/Modules/
D_ssl.c2238 const char *cipherlist; in set_ciphers() local
2240 if (!PyArg_ParseTuple(args, "s:set_ciphers", &cipherlist)) in set_ciphers()
2242 ret = SSL_CTX_set_cipher_list(self->ctx, cipherlist); in set_ciphers()