Searched defs:cipher_suites (Results 1 - 13 of 13) sorted by relevance

/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLSocketFunctionalTest.java42 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[
[all...]
H A DSSLEngineImplTest.java39 private static final String[] cipher_suites = { field in class:SSLEngineImplTest
68 for (int i = 0; i < cipher_suites.length; i++) {
72 + cipher_suites[i]);
1376 new String[] { prefix + cipher_suites[0] });
1378 new String[] { prefix + cipher_suites[0] });
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dtlsv1_client_i.h43 u16 cipher_suites[MAX_CIPHER_COUNT]; member in struct:tlsv1_client
H A Dtlsv1_server_i.h38 u16 cipher_suites[MAX_CIPHER_COUNT]; member in struct:tlsv1_server
/external/wpa_supplicant_8/src/tls/
H A Dtlsv1_client_i.h43 u16 cipher_suites[MAX_CIPHER_COUNT]; member in struct:tlsv1_client
H A Dtlsv1_server_i.h38 u16 cipher_suites[MAX_CIPHER_COUNT]; member in struct:tlsv1_server
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dtlsv1_client_i.h43 u16 cipher_suites[MAX_CIPHER_COUNT]; member in struct:tlsv1_client
H A Dtlsv1_server_i.h38 u16 cipher_suites[MAX_CIPHER_COUNT]; member in struct:tlsv1_server
/external/boringssl/src/ssl/
H A Ds3_srvr.c683 CBB client_hello, hello_body, cipher_suites; local
761 !CBB_add_u16_length_prefixed(&hello_body, &cipher_suites)) {
780 if (!CBB_add_u16(&cipher_suites, cipher_spec)) {
817 CBS client_random, session_id, cipher_suites, compression_methods; local
990 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) ||
991 CBS_len(&cipher_suites) == 0 ||
992 CBS_len(&cipher_suites) % 2 != 0 ||
1000 ciphers = ssl_bytes_to_cipher_list(s, &cipher_suites);
H A Dt1_lib.c250 CBS client_hello, session_id, cipher_suites, compression_methods, extensions; local
275 /* Extract cipher_suites. */
276 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) ||
277 CBS_len(&cipher_suites) < 2 || (CBS_len(&cipher_suites) & 1) != 0) {
280 ctx->cipher_suites = CBS_data(&cipher_suites);
281 ctx->cipher_suites_len = CBS_len(&cipher_suites);
H A Dssl_lib.c1284 CBS cipher_suites = *cbs; local
1292 if (CBS_len(&cipher_suites) % 2 != 0) {
1304 while (CBS_len(&cipher_suites) > 0) {
1307 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) {
/external/boringssl/include/openssl/
H A Dssl.h800 const uint8_t *cipher_suites; member in struct:ssl_early_callback_ctx
/external/boringssl/src/include/openssl/
H A Dssl.h800 const uint8_t *cipher_suites; member in struct:ssl_early_callback_ctx

Completed in 258 milliseconds