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 26 size_t dh_g_len; member in struct:tlsv1_credentials
tlsv1_client_i.h 59 size_t dh_g_len; member in struct:tlsv1_client
tlsv1_server_write.c 447 if (crypto_mod_exp(conn->cred->dh_g, conn->cred->dh_g_len,
511 if (2 + conn->cred->dh_g_len > (size_t) (end - pos)) {
519 WPA_PUT_BE16(pos, conn->cred->dh_g_len);
521 os_memcpy(pos, conn->cred->dh_g, conn->cred->dh_g_len);
522 pos += conn->cred->dh_g_len;
tlsv1_client_read.c 702 conn->dh_g_len = val;
703 conn->dh_g = os_malloc(conn->dh_g_len);
706 os_memcpy(conn->dh_g, pos, conn->dh_g_len);
707 pos += conn->dh_g_len;
709 conn->dh_g, conn->dh_g_len);
710 if (conn->dh_g_len == 1 && conn->dh_g[0] < 2)
    [all...]
tlsv1_client_write.c 391 if (crypto_mod_exp(conn->dh_g, conn->dh_g_len,
tlsv1_cred.c 1195 cred->dh_g_len = hdr.length;
    [all...]

Completed in 85 milliseconds