HomeSort by relevance Sort by last modified time
    Searched full:dh_shared (Results 1 - 2 of 2) sorted by null

  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_common.c 66 struct wpabuf *pubkey, *dh_shared; local
83 dh_shared = dh_derive_shared(pubkey, wps->dh_privkey,
85 dh_shared = wpabuf_zeropad(dh_shared, 192);
86 if (dh_shared == NULL) {
95 wpa_hexdump_buf_key(MSG_DEBUG, "WPS: DH shared key", dh_shared);
98 addr[0] = wpabuf_head(dh_shared);
99 len[0] = wpabuf_len(dh_shared);
102 wpabuf_free(dh_shared);
  /external/wpa_supplicant_8/src/wps/
wps_common.c 68 struct wpabuf *pubkey, *dh_shared; local
87 dh_shared = dh5_derive_shared(wps->dh_ctx, pubkey, wps->dh_privkey);
90 dh_shared = wpabuf_zeropad(dh_shared, 192);
91 if (dh_shared == NULL) {
100 wpa_hexdump_buf_key(MSG_DEBUG, "WPS: DH shared key", dh_shared);
103 addr[0] = wpabuf_head(dh_shared);
104 len[0] = wpabuf_len(dh_shared);
107 wpabuf_free(dh_shared);

Completed in 1483 milliseconds