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