HomeSort by relevance Sort by last modified time
    Searched refs:dh_g_len (Results 1 - 6 of 6) sorted by null

  /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_client_read.c 441 conn->dh_g_len = WPA_GET_BE16(pos);
443 if (conn->dh_g_len == 0 || end - pos < (int) conn->dh_g_len)
445 conn->dh_g = os_malloc(conn->dh_g_len);
448 os_memcpy(conn->dh_g, pos, conn->dh_g_len);
449 pos += conn->dh_g_len;
451 conn->dh_g, conn->dh_g_len);
452 if (conn->dh_g_len == 1 && conn->dh_g[0] < 2)
tlsv1_server_write.c 323 if (crypto_mod_exp(conn->cred->dh_g, conn->cred->dh_g_len,
387 if (pos + 2 + conn->cred->dh_g_len > end) {
395 WPA_PUT_BE16(pos, conn->cred->dh_g_len);
397 os_memcpy(pos, conn->cred->dh_g, conn->cred->dh_g_len);
398 pos += conn->cred->dh_g_len;
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,

Completed in 145 milliseconds