Home
last modified time | relevance | path

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

/external/curl/lib/vtls/
Dsectransp.c1387 SSLCipherSuite *all_ciphers = NULL, *allowed_ciphers = NULL; local
1794 all_ciphers = malloc(all_ciphers_count*sizeof(SSLCipherSuite));
1795 if(!all_ciphers) {
1801 Curl_safefree(all_ciphers);
1805 err = SSLGetSupportedCiphers(BACKEND->ssl_ctx, all_ciphers,
1808 Curl_safefree(all_ciphers);
1819 all_ciphers[i] >= 0xC001 && all_ciphers[i] <= 0xC032) {
1823 switch(all_ciphers[i]) {
1888 allowed_ciphers[allowed_ciphers_count++] = all_ciphers[i];
1894 Curl_safefree(all_ciphers);
/external/boringssl/src/ssl/
Dhandoff.cc34 Span<const SSL_CIPHER> all_ciphers = AllCiphers(); in serialize_features() local
35 for (const SSL_CIPHER& cipher : all_ciphers) { in serialize_features()