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

  /external/chromium_org/chrome/browser/prefs/
command_line_pref_store.cc 170 std::string cipher_suites = local
173 base::SplitString(cipher_suites, ',', &cipher_strings);
  /libcore/crypto/src/main/java/org/conscrypt/
ClientHello.java 52 final CipherSuite[] cipher_suites; field in class:ClientHello
76 this.cipher_suites = cipher_suite;
78 length = 38 + session_id.length + (this.cipher_suites.length << 1)
102 cipher_suites = new CipherSuite[size];
106 cipher_suites[i] = CipherSuite.getByCode(b0, b1);
111 this.length = 38 + session_id.length + (cipher_suites.length << 1)
147 cipher_suites = new CipherSuite[cipher_spec_length/3];
148 for (int i = 0; i < cipher_suites.length; i++) {
152 cipher_suites[i] = CipherSuite.getByCode(b0, b1, b2);
167 this.length = 38 + session_id.length + (cipher_suites.length << 1
    [all...]
ClientHandshakeImpl.java 128 CipherSuite[] cipher_suites; local
130 cipher_suites = new CipherSuite[] { session.cipherSuite };
132 cipher_suites = parameters.getEnabledCipherSuitesMember();
135 session.protocol.version, session.id, cipher_suites);
  /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/wpa_supplicant_8/src/tls/
tlsv1_client_i.h 43 u16 cipher_suites[MAX_CIPHER_COUNT]; member in struct:tlsv1_client
tlsv1_server_i.h 38 u16 cipher_suites[MAX_CIPHER_COUNT]; member in struct:tlsv1_server
  /external/chromium_org/net/third_party/nss/ssl/
ssl3prot.h 154 SECItem cipher_suites; member in struct:__anon9461

Completed in 613 milliseconds