Home
last modified time | relevance | path

Searched refs:dh_privkey (Results 1 – 8 of 8) sorted by relevance

/external/wpa_supplicant_8/src/wps/
Dwps_attr_build.c26 wpabuf_clear_free(wps->dh_privkey); in wps_build_public_key()
27 wps->dh_privkey = NULL; in wps_build_public_key()
28 if (wps->dev_pw_id != DEV_PW_DEFAULT && wps->wps->dh_privkey && in wps_build_public_key()
36 wps->dh_privkey = wpabuf_dup(wps->wps->dh_privkey); in wps_build_public_key()
61 wps->dh_privkey = wpabuf_dup(wps->wps->ap_nfc_dh_privkey); in wps_build_public_key()
63 wps->dh_ctx = dh5_init_fixed(wps->dh_privkey, pubkey); in wps_build_public_key()
68 wps->dh_ctx = dh5_init(&wps->dh_privkey, &pubkey); in wps_build_public_key()
71 if (wps->dh_ctx == NULL || wps->dh_privkey == NULL || pubkey == NULL) { in wps_build_public_key()
77 wpa_hexdump_buf_key(MSG_DEBUG, "WPS: DH Private Key", wps->dh_privkey); in wps_build_public_key()
Dwps_common.c70 if (wps->dh_privkey == NULL) { in wps_derive_keys()
81 wpa_hexdump_buf_key(MSG_DEBUG, "WPS: DH Private Key", wps->dh_privkey); in wps_derive_keys()
83 dh_shared = dh5_derive_shared(wps->dh_ctx, pubkey, wps->dh_privkey); in wps_derive_keys()
93 wpabuf_clear_free(wps->dh_privkey); in wps_derive_keys()
94 wps->dh_privkey = NULL; in wps_derive_keys()
Dwps_i.h61 struct wpabuf *dh_privkey; member
Dwps.c173 wpabuf_clear_free(data->dh_privkey); in wps_deinit()
Dwps.h647 struct wpabuf *dh_privkey; member
/external/wpa_supplicant_8/wpa_supplicant/
Dap.c1390 wpabuf_free(wps->dh_privkey); in wpas_ap_wps_add_nfc_pw()
1391 wps->dh_privkey = wpabuf_dup( in wpas_ap_wps_add_nfc_pw()
1395 if (wps->dh_privkey == NULL || wps->dh_pubkey == NULL) { in wpas_ap_wps_add_nfc_pw()
1399 wpabuf_free(wps->dh_privkey); in wpas_ap_wps_add_nfc_pw()
1400 wps->dh_privkey = NULL; in wpas_ap_wps_add_nfc_pw()
1403 wps->dh_ctx = dh5_init_fixed(wps->dh_privkey, wps->dh_pubkey); in wpas_ap_wps_add_nfc_pw()
Dwps_supplicant.c1641 wpabuf_free(wpa_s->wps->dh_privkey); in wpas_wps_deinit()
2314 wpabuf_free(wps->dh_privkey); in wpas_wps_start_nfc()
2315 wps->dh_privkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey); in wpas_wps_start_nfc()
2317 if (wps->dh_privkey == NULL || wps->dh_pubkey == NULL) { in wpas_wps_start_nfc()
2321 wpabuf_free(wps->dh_privkey); in wpas_wps_start_nfc()
2322 wps->dh_privkey = NULL; in wpas_wps_start_nfc()
2326 wps->dh_ctx = dh5_init_fixed(wps->dh_privkey, wps->dh_pubkey); in wpas_wps_start_nfc()
2330 wpabuf_free(wps->dh_privkey); in wpas_wps_start_nfc()
2331 wps->dh_privkey = NULL; in wpas_wps_start_nfc()
/external/wpa_supplicant_8/src/ap/
Dwps_hostapd.c968 wpabuf_free(wps->dh_privkey); in hostapd_free_wps()