Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching full:miclen

305 	size_t len, miclen;
311 miclen = eap_gpsk_mic_len(data->vendor, data->specifier);
314 sizeof(struct eap_gpsk_csuite) + 2 + miclen;
532 size_t miclen;
538 miclen = eap_gpsk_mic_len(data->vendor, data->specifier);
539 if (end - pos < (int) miclen) {
541 "(left=%lu miclen=%lu)",
543 (unsigned long) miclen);
552 if (os_memcmp(mic, pos, miclen) != 0) {
554 wpa_hexdump(MSG_DEBUG, "EAP-GPSK: Received MIC", pos, miclen);
555 wpa_hexdump(MSG_DEBUG, "EAP-GPSK: Computed MIC", mic, miclen);
558 pos += miclen;