/external/chromium_org/chrome/browser/prefs/ |
command_line_pref_store.cc | 170 std::string cipher_suites = local 173 base::SplitString(cipher_suites, ',', &cipher_strings);
|
/external/chromium_org/third_party/boringssl/src/ssl/ |
s23_srvr.c | 401 CBB client_hello, hello_body, cipher_suites; local 468 !CBB_add_u16_length_prefixed(&hello_body, &cipher_suites)) 489 if (!CBB_add_u16(&cipher_suites, cipher_spec))
|
s3_srvr.c | 716 CBS client_random, session_id, cipher_suites, compression_methods; local 947 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) || 956 /* TODO(davidben): Per spec, cipher_suites can never be empty 959 * require non-empty? If a client sends empty cipher_suites 962 if (CBS_len(&cipher_suites) == 0 && CBS_len(&session_id) != 0) 970 if (ssl_bytes_to_cipher_list(s, &cipher_suites, &ciphers) == NULL) 976 if (s->hit && CBS_len(&cipher_suites) > 0) [all...] |
ssl_lib.c | 1559 CBS cipher_suites = *cbs; local [all...] |
t1_lib.c | 275 CBS client_hello, session_id, cipher_suites, compression_methods, extensions; local 302 /* Extract cipher_suites. */ 303 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) || 304 CBS_len(&cipher_suites) < 2 || 305 (CBS_len(&cipher_suites) & 1) != 0) 307 ctx->cipher_suites = CBS_data(&cipher_suites); 308 ctx->cipher_suites_len = CBS_len(&cipher_suites); [all...] |
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
SSLSocketFunctionalTest.java | 42 private String[] cipher_suites = { field in class:SSLSocketFunctionalTest 81 ? new String[] { "TLS_" + cipher_suites[0] } 82 : new String[] { "SSL_" + cipher_suites[0] }); 91 ? new String[] { "TLS_" + cipher_suites[0] } 92 : new String[] { "SSL_" + cipher_suites[0] }); 98 for (int i = 0; i < cipher_suites.length; i++) { 101 + cipher_suites[i]); 119 ? new String[] { "TLS_" + cipher_suites[i] } 120 : new String[] { "SSL_" + cipher_suites[i] }); 129 ? new String[] { "TLS_" + cipher_suites[i] [all...] |
SSLEngineImplTest.java | 39 private static final String[] cipher_suites = { field in class:SSLEngineImplTest 68 for (int i = 0; i < cipher_suites.length; i++) { 72 + cipher_suites[i]); [all...] |
/external/chromium_org/chrome/browser/net/ |
ssl_config_service_manager_pref.cc | 48 std::vector<uint16> cipher_suites; local 49 cipher_suites.reserve(cipher_strings.size()); 59 cipher_suites.push_back(cipher_suite); 61 std::sort(cipher_suites.begin(), cipher_suites.end()); 62 return cipher_suites;
|
/external/chromium_org/net/third_party/nss/ssl/ |
ssl3prot.h | 154 SECItem cipher_suites; member in struct:__anon14295
|
/external/chromium_org/third_party/boringssl/src/include/openssl/ |
ssl.h | 722 const unsigned char *cipher_suites; size_t cipher_suites_len; member in struct:ssl_early_callback_ctx [all...] |