Home | History | Annotate | Download | only in net80211

Lines Matching defs:mic

105 	uint64_t rx_rsc;		/* held until MIC verified */
110 u8 mic[IEEE80211_WEP_MICLEN]);
207 * Add MIC to the frame as needed.
218 uint8_t mic[IEEE80211_WEP_MICLEN];
225 m, hdrlen, m->m_pkthdr.len - hdrlen, mic);
226 return m_append(m, tkip.ic_miclen, mic);
289 * NB: We can't update the rsc in the key until MIC is verified.
292 * and updating wk_keyrsc when stripping the MIC in tkip_demic.
317 * Verify and strip MIC from the frame.
328 u8 mic[IEEE80211_WEP_MICLEN];
335 mic);
338 if (memcmp(mic, mic0, tkip.ic_miclen)) {
347 * Strip MIC from the tail.
352 * Ok to update rsc now that MIC has been verified.
754 * Craft pseudo header used to calculate the MIC.
793 u8 mic[IEEE80211_WEP_MICLEN])
807 /* Michael MIC pseudo header: DA, SA, 3 x 0, Priority */
870 put_le32(mic, l);
871 put_le32(mic + 4, r);