HomeSort by relevance Sort by last modified time
    Searched defs:cipherlist (Results 1 - 4 of 4) sorted by null

  /external/curl/lib/vtls/
gskit.c 306 const char *cipherlist = SSL_CONN_CONFIG(cipher_list); local
320 if(!cipherlist)
322 while(is_separator(*cipherlist)) /* Skip initial separators. */
323 cipherlist++;
324 if(!*cipherlist)
330 l = strlen(cipherlist) + 1;
347 for(clp = cipherlist; *cipherlist && !is_separator(*cipherlist);)
348 cipherlist++
    [all...]
nss.c 119 #define NUM_OF_CIPHERS sizeof(cipherlist)/sizeof(cipherlist[0])
120 static const cipher_s cipherlist[] = { variable
285 if(strcasecompare(cipher, cipherlist[i].name)) {
307 if(SSL_CipherPrefSet(model, cipherlist[i].num, PR_TRUE) != SECSuccess) {
308 failf(data, "cipher-suite not supported by NSS: %s", cipherlist[i].name);
326 SSL_CipherPolicyGet(cipherlist[i].num, &policy);
    [all...]
  /external/python/cpython3/Modules/clinic/
_ssl.c.h 356 "set_ciphers($self, cipherlist, /)\n"
364 _ssl__SSLContext_set_ciphers_impl(PySSLContext *self, const char *cipherlist);
370 const char *cipherlist; local
372 if (!PyArg_Parse(arg, "s:set_ciphers", &cipherlist)) {
375 return_value = _ssl__SSLContext_set_ciphers_impl(self, cipherlist);
    [all...]
  /external/python/cpython2/Modules/
_ssl.c 2238 const char *cipherlist; local
    [all...]

Completed in 282 milliseconds