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

  /external/boringssl/src/ssl/
s3_both.c 627 CBB client_hello, hello_body, cipher_suites; local
638 !CBB_add_u16_length_prefixed(&hello_body, &cipher_suites)) {
657 if (!CBB_add_u16(&cipher_suites, cipher_spec)) {
tls13_server.c 99 CBS cipher_suites; local
100 CBS_init(&cipher_suites, client_hello->cipher_suites,
107 while (CBS_len(&cipher_suites) > 0) {
109 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) {
handshake_server.c 520 CBS cipher_suites; local
521 CBS_init(&cipher_suites, client_hello->cipher_suites,
524 while (CBS_len(&cipher_suites) > 0) {
526 if (!CBS_get_u16(&cipher_suites, &got_id)) {
648 CBS cipher_suites; local
649 CBS_init(&cipher_suites, client_hello->cipher_suites,
658 while (CBS_len(&cipher_suites) > 0) {
661 if (!CBS_get_u16(&cipher_suites, &cipher_suite))
    [all...]
t1_lib.c 235 CBS cipher_suites, compression_methods; local
236 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) ||
237 CBS_len(&cipher_suites) < 2 || (CBS_len(&cipher_suites) & 1) != 0 ||
243 out->cipher_suites = CBS_data(&cipher_suites);
244 out->cipher_suites_len = CBS_len(&cipher_suites);
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_client_i.h 46 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/syslinux/gpxe/src/net/
tls.c 623 uint16_t cipher_suites[2]; member in struct:__anon33351
634 hello.cipher_suite_len = htons ( sizeof ( hello.cipher_suites ) );
635 hello.cipher_suites[0] = htons ( TLS_RSA_WITH_AES_128_CBC_SHA );
636 hello.cipher_suites[1] = htons ( TLS_RSA_WITH_AES_256_CBC_SHA );
    [all...]
  /external/boringssl/src/include/openssl/
ssl.h 3155 const uint8_t *cipher_suites; member in struct:ssl_early_callback_ctx
    [all...]

Completed in 329 milliseconds