Lines Matching defs:all_ciphers
1474 SSLCipherSuite *all_ciphers = NULL, *allowed_ciphers = NULL;
1494 all_ciphers = malloc(all_ciphers_count*sizeof(SSLCipherSuite));
1495 if(!all_ciphers) {
1501 Curl_safefree(all_ciphers);
1505 err = SSLGetSupportedCiphers(ssl_ctx, all_ciphers,
1508 Curl_safefree(all_ciphers);
1519 all_ciphers[i] >= 0xC001 && all_ciphers[i] <= 0xC032) {
1523 if(is_cipher_suite_strong(all_ciphers[i])) {
1524 allowed_ciphers[allowed_ciphers_count++] = all_ciphers[i];
1529 Curl_safefree(all_ciphers);