Searched refs:dh_g_len (Results 1 – 13 of 13) sorted by relevance
/external/wpa_supplicant_8/src/tls/ |
D | tlsv1_client_read.c | 440 conn->dh_g_len = WPA_GET_BE16(pos); in tlsv1_process_diffie_hellman() 442 if (conn->dh_g_len == 0 || end - pos < (int) conn->dh_g_len) in tlsv1_process_diffie_hellman() 444 conn->dh_g = os_malloc(conn->dh_g_len); in tlsv1_process_diffie_hellman() 447 os_memcpy(conn->dh_g, pos, conn->dh_g_len); in tlsv1_process_diffie_hellman() 448 pos += conn->dh_g_len; in tlsv1_process_diffie_hellman() 450 conn->dh_g, conn->dh_g_len); in tlsv1_process_diffie_hellman() 451 if (conn->dh_g_len == 1 && conn->dh_g[0] < 2) in tlsv1_process_diffie_hellman()
|
D | tlsv1_server_write.c | 326 if (crypto_mod_exp(conn->cred->dh_g, conn->cred->dh_g_len, in tls_write_server_key_exchange() 390 if (pos + 2 + conn->cred->dh_g_len > end) { in tls_write_server_key_exchange() 398 WPA_PUT_BE16(pos, conn->cred->dh_g_len); in tls_write_server_key_exchange() 400 os_memcpy(pos, conn->cred->dh_g, conn->cred->dh_g_len); in tls_write_server_key_exchange() 401 pos += conn->cred->dh_g_len; in tls_write_server_key_exchange()
|
D | tlsv1_cred.h | 27 size_t dh_g_len; member
|
D | tlsv1_client_i.h | 62 size_t dh_g_len; member
|
D | tlsv1_cred.c | 407 cred->dh_g_len = hdr.length; in tlsv1_set_dhparams_der()
|
D | tlsv1_client_write.c | 257 if (crypto_mod_exp(conn->dh_g, conn->dh_g_len, in tlsv1_key_x_anon_dh()
|
/external/wpa_supplicant_6/wpa_supplicant/src/tls/ |
D | tlsv1_client_read.c | 439 conn->dh_g_len = WPA_GET_BE16(pos); in tlsv1_process_diffie_hellman() 441 if (conn->dh_g_len == 0 || end - pos < (int) conn->dh_g_len) in tlsv1_process_diffie_hellman() 443 conn->dh_g = os_malloc(conn->dh_g_len); in tlsv1_process_diffie_hellman() 446 os_memcpy(conn->dh_g, pos, conn->dh_g_len); in tlsv1_process_diffie_hellman() 447 pos += conn->dh_g_len; in tlsv1_process_diffie_hellman() 449 conn->dh_g, conn->dh_g_len); in tlsv1_process_diffie_hellman() 450 if (conn->dh_g_len == 1 && conn->dh_g[0] < 2) in tlsv1_process_diffie_hellman()
|
D | tlsv1_server_write.c | 328 if (crypto_mod_exp(conn->cred->dh_g, conn->cred->dh_g_len, in tls_write_server_key_exchange() 392 if (pos + 2 + conn->cred->dh_g_len > end) { in tls_write_server_key_exchange() 400 WPA_PUT_BE16(pos, conn->cred->dh_g_len); in tls_write_server_key_exchange() 402 os_memcpy(pos, conn->cred->dh_g, conn->cred->dh_g_len); in tls_write_server_key_exchange() 403 pos += conn->cred->dh_g_len; in tls_write_server_key_exchange()
|
D | tlsv1_cred.h | 27 size_t dh_g_len; member
|
D | tlsv1_client_i.h | 61 size_t dh_g_len; member
|
D | tlsv1_cred.c | 336 cred->dh_g_len = hdr.length; in tlsv1_set_dhparams_der()
|
D | tlsv1_client_write.c | 257 if (crypto_mod_exp(conn->dh_g, conn->dh_g_len, in tlsv1_key_x_anon_dh()
|
/external/wpa_supplicant/ |
D | tlsv1_client.c | 79 size_t dh_g_len; member 660 conn->dh_g_len = WPA_GET_BE16(pos); in tlsv1_process_diffie_hellman() 662 if (conn->dh_g_len == 0 || end - pos < (int) conn->dh_g_len) in tlsv1_process_diffie_hellman() 664 conn->dh_g = os_malloc(conn->dh_g_len); in tlsv1_process_diffie_hellman() 667 os_memcpy(conn->dh_g, pos, conn->dh_g_len); in tlsv1_process_diffie_hellman() 668 pos += conn->dh_g_len; in tlsv1_process_diffie_hellman() 670 conn->dh_g, conn->dh_g_len); in tlsv1_process_diffie_hellman() 671 if (conn->dh_g_len == 1 && conn->dh_g[0] < 2) in tlsv1_process_diffie_hellman() 1266 crypto_mod_exp(conn->dh_g, conn->dh_g_len, in tlsv1_key_x_anon_dh()
|