Searched refs:client_version (Results 1 – 9 of 9) sorted by relevance
| /freebsd-12.1/contrib/wpa/src/tls/ |
| H A D | tlsv1_server_read.c | 180 conn->client_version = WPA_GET_BE16(pos); in tls_process_client_hello() 182 conn->client_version >> 8, in tls_process_client_hello() 183 conn->client_version & 0xff); in tls_process_client_hello() 184 if (conn->client_version < TLS_VERSION_1) { in tls_process_client_hello() 186 conn->client_version >> 8, in tls_process_client_hello() 187 conn->client_version & 0xff); in tls_process_client_hello() 197 else if (conn->client_version >= TLS_VERSION_1_2) in tls_process_client_hello() 200 else if (conn->client_version > TLS_VERSION_1_1) in tls_process_client_hello() 203 conn->rl.tls_version = conn->client_version; in tls_process_client_hello() 665 if (!use_random && WPA_GET_BE16(out) != conn->client_version) { in tls_process_client_key_exchange_rsa()
|
| H A D | tlsv1_server_i.h | 48 u16 client_version; member
|
| /freebsd-12.1/crypto/openssl/ssl/statem/ |
| H A D | statem_lib.c | 1731 int client_version = hello->legacy_version; in ssl_choose_server_version() local 1737 s->client_version = client_version; in ssl_choose_server_version() 1742 if (version_cmp(s, client_version, s->version) < 0) in ssl_choose_server_version() 1795 if (client_version <= SSL3_VERSION) in ssl_choose_server_version() 1831 if (version_cmp(s, client_version, TLS1_3_VERSION) >= 0) in ssl_choose_server_version() 1832 client_version = TLS1_2_VERSION; in ssl_choose_server_version() 1842 version_cmp(s, client_version, vent->version) < 0) in ssl_choose_server_version() 2134 s->client_version = ver_max; in ssl_set_client_hello_version()
|
| H A D | statem_srvr.c | 1640 s->client_version = clienthello->legacy_version; in tls_early_post_process_client_hello() 1658 s->version = s->client_version = clienthello->legacy_version; in tls_early_post_process_client_hello() 1699 s->version = s->client_version; in tls_early_post_process_client_hello() 3073 (unsigned)(s->client_version >> 8)); in tls_process_cke_rsa() 3076 (unsigned)(s->client_version & 0xff)); in tls_process_cke_rsa()
|
| H A D | statem_clnt.c | 1187 if (!WPACKET_put_bytes_u16(pkt, s->client_version) in tls_construct_client_hello() 2994 pms[0] = s->client_version >> 8; in tls_construct_cke_rsa() 2995 pms[1] = s->client_version & 0xff; in tls_construct_cke_rsa()
|
| /freebsd-12.1/crypto/openssl/ssl/ |
| H A D | ssl_locl.h | 356 ((!SSL_IS_DTLS(s) && s->client_version >= TLS1_2_VERSION) || \ 357 (SSL_IS_DTLS(s) && DTLS_VERSION_GE(s->client_version, DTLS1_2_VERSION))) 1250 int client_version; member
|
| H A D | d1_lib.c | 198 s->client_version = s->version = DTLS1_BAD_VER; in dtls1_clear()
|
| H A D | ssl_lib.c | 608 s->client_version = s->version; in SSL_clear() 3991 return s->client_version; in SSL_client_version()
|
| /freebsd-12.1/crypto/openssl/ |
| H A D | CHANGES | 9265 not contain client_version: Instead of aborting with an error, 9278 (sent using the client's version number) if client_version is 9838 first two bytes of the ClientHello message, i.e. client_version. 11641 *) Use client_version from client hello to select the protocol
|