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_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_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.h646 struct wpabuf *dh_privkey; member
Dwps.c173 wpabuf_free(data->dh_privkey); in wps_deinit()
/external/wpa_supplicant_8/wpa_supplicant/
Dap.c1183 wpabuf_free(wps->dh_privkey); in wpas_ap_wps_add_nfc_pw()
1184 wps->dh_privkey = wpabuf_dup( in wpas_ap_wps_add_nfc_pw()
1188 if (wps->dh_privkey == NULL || wps->dh_pubkey == NULL) { in wpas_ap_wps_add_nfc_pw()
1192 wpabuf_free(wps->dh_privkey); in wpas_ap_wps_add_nfc_pw()
1193 wps->dh_privkey = NULL; in wpas_ap_wps_add_nfc_pw()
1196 wps->dh_ctx = dh5_init_fixed(wps->dh_privkey, wps->dh_pubkey); in wpas_ap_wps_add_nfc_pw()
Dwps_supplicant.c1524 wpabuf_free(wpa_s->wps->dh_privkey); in wpas_wps_deinit()
2197 wpabuf_free(wps->dh_privkey); in wpas_wps_start_nfc()
2198 wps->dh_privkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey); in wpas_wps_start_nfc()
2200 if (wps->dh_privkey == NULL || wps->dh_pubkey == NULL) { in wpas_wps_start_nfc()
2204 wpabuf_free(wps->dh_privkey); in wpas_wps_start_nfc()
2205 wps->dh_privkey = NULL; in wpas_wps_start_nfc()
2209 wps->dh_ctx = dh5_init_fixed(wps->dh_privkey, wps->dh_pubkey); in wpas_wps_start_nfc()
2213 wpabuf_free(wps->dh_privkey); in wpas_wps_start_nfc()
2214 wps->dh_privkey = NULL; in wpas_wps_start_nfc()
/external/wpa_supplicant_8/src/ap/
Dwps_hostapd.c955 wpabuf_free(wps->dh_privkey); in hostapd_free_wps()