/external/wpa_supplicant_8/src/tls/ |
tlsv1_cred.h | 21 size_t dh_g_len; member in struct:tlsv1_credentials
|
tlsv1_client_i.h | 56 size_t dh_g_len; member in struct:tlsv1_client
|
tlsv1_server_write.c | 324 if (crypto_mod_exp(conn->cred->dh_g, conn->cred->dh_g_len, 388 if (pos + 2 + conn->cred->dh_g_len > end) { 396 WPA_PUT_BE16(pos, conn->cred->dh_g_len); 398 os_memcpy(pos, conn->cred->dh_g, conn->cred->dh_g_len); 399 pos += conn->cred->dh_g_len;
|
tlsv1_client_read.c | 482 conn->dh_g_len = val; 483 conn->dh_g = os_malloc(conn->dh_g_len); 486 os_memcpy(conn->dh_g, pos, conn->dh_g_len); 487 pos += conn->dh_g_len; 489 conn->dh_g, conn->dh_g_len); 490 if (conn->dh_g_len == 1 && conn->dh_g[0] < 2)
|
tlsv1_cred.c | 420 cred->dh_g_len = hdr.length;
|
tlsv1_client_write.c | 254 if (crypto_mod_exp(conn->dh_g, conn->dh_g_len,
|