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

  /external/wpa_supplicant_8/src/tls/
tlsv1_cred.h 19 size_t dh_p_len; member in struct:tlsv1_credentials
tlsv1_client_i.h 53 size_t dh_p_len; member in struct:tlsv1_client
tlsv1_server_write.c 279 conn->dh_secret_len = conn->cred->dh_p_len;
314 dh_ys_len = conn->cred->dh_p_len;
325 conn->cred->dh_p, conn->cred->dh_p_len,
373 if (pos + 2 + conn->cred->dh_p_len > end) {
381 WPA_PUT_BE16(pos, conn->cred->dh_p_len);
383 os_memcpy(pos, conn->cred->dh_p, conn->cred->dh_p_len);
384 pos += conn->cred->dh_p_len;
tlsv1_client_read.c 424 conn->dh_p_len = WPA_GET_BE16(pos);
426 if (conn->dh_p_len == 0 || end - pos < (int) conn->dh_p_len) {
428 (unsigned long) conn->dh_p_len);
431 conn->dh_p = os_malloc(conn->dh_p_len);
434 os_memcpy(conn->dh_p, pos, conn->dh_p_len);
435 pos += conn->dh_p_len;
437 conn->dh_p, conn->dh_p_len);
tlsv1_client_write.c 214 csecret_len = conn->dh_p_len;
244 dh_yc_len = conn->dh_p_len;
256 conn->dh_p, conn->dh_p_len,
283 shared_len = conn->dh_p_len;
297 conn->dh_p, conn->dh_p_len,
tlsv1_cred.c 398 cred->dh_p_len = hdr.length;
tlsv1_server_read.c 644 shared_len = conn->cred->dh_p_len;
657 conn->cred->dh_p, conn->cred->dh_p_len,

Completed in 68 milliseconds