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

  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_sim_common.c 178 if (mac == NULL || wpabuf_len(req) < EAP_SIM_MAC_LEN ||
180 mac > wpabuf_head_u8(req) + wpabuf_len(req) - EAP_SIM_MAC_LEN)
194 os_memset(tmp + (mac - wpabuf_head_u8(req)), 0, EAP_SIM_MAC_LEN);
203 hmac, EAP_SIM_MAC_LEN);
206 return (os_memcmp(hmac, mac, EAP_SIM_MAC_LEN) == 0) ? 0 : 1;
223 os_memset(mac, 0, EAP_SIM_MAC_LEN);
230 os_memcpy(mac, hmac, EAP_SIM_MAC_LEN);
232 mac, EAP_SIM_MAC_LEN);
373 if (mac == NULL || wpabuf_len(req) < EAP_SIM_MAC_LEN ||
375 mac > wpabuf_head_u8(req) + wpabuf_len(req) - EAP_SIM_MAC_LEN)
    [all...]
eap_sim_common.h 20 #define EAP_SIM_MAC_LEN 16
  /external/wpa_supplicant/
eap_sim_common.c 176 if (mac == NULL || req_len < EAP_SIM_MAC_LEN || mac < req ||
177 mac > req + req_len - EAP_SIM_MAC_LEN)
191 os_memset(tmp + (mac - req), 0, EAP_SIM_MAC_LEN);
199 hmac, EAP_SIM_MAC_LEN);
202 return (os_memcmp(hmac, mac, EAP_SIM_MAC_LEN) == 0) ? 0 : 1;
219 os_memset(mac, 0, EAP_SIM_MAC_LEN);
226 os_memcpy(mac, hmac, EAP_SIM_MAC_LEN);
228 mac, EAP_SIM_MAC_LEN);
333 if (alen != 2 + EAP_SIM_MAC_LEN) {
456 if (alen != 2 + EAP_SIM_MAC_LEN) {
    [all...]
eap_sim_common.h 20 #define EAP_SIM_MAC_LEN 16

Completed in 22 milliseconds