Lines Matching defs:eap_eke_data
16 struct eap_eke_data { struct
17 enum {
19 } state;
20 u8 msk[EAP_MSK_LEN];
21 u8 emsk[EAP_EMSK_LEN];
22 u8 *peerid;
23 size_t peerid_len;
24 u8 *serverid;
25 size_t serverid_len;
26 u8 dh_priv[EAP_EKE_MAX_DH_LEN];
27 struct eap_eke_session sess;
28 u8 nonce_p[EAP_EKE_MAX_NONCE_LEN];
29 u8 nonce_s[EAP_EKE_MAX_NONCE_LEN];
30 struct wpabuf *msgs;
31 u8 dhgroup; /* forced DH group or 0 to allow all supported */
32 u8 encr; /* forced encryption algorithm or 0 to allow all supported */
33 u8 prf; /* forced PRF or 0 to allow all supported */
57 static void eap_eke_state(struct eap_eke_data *data, int state) in eap_eke_state() argument