Home
last modified time | relevance | path

Searched refs:IEEE80211_TKIP_MICLEN (Results 1 – 5 of 5) sorted by relevance

/openbsd/sys/net80211/
H A Dieee80211_crypto_tkip.c120 u_int8_t mic[IEEE80211_TKIP_MICLEN]) in ieee80211_tkip_mic() argument
180 (IEEE80211_TKIP_MICLEN + IEEE80211_WEP_CRCLEN)
291 crc = ether_crc32_le_update(crc, mic, IEEE80211_TKIP_MICLEN); in ieee80211_tkip_encrypt()
292 rc4_crypt(&ctx->rc4, mic, mic, IEEE80211_TKIP_MICLEN); in ieee80211_tkip_encrypt()
293 n->m_len += IEEE80211_TKIP_MICLEN; in ieee80211_tkip_encrypt()
359 u_int8_t buf[IEEE80211_TKIP_MICLEN + IEEE80211_WEP_CRCLEN]; in ieee80211_tkip_decrypt()
360 u_int8_t mic[IEEE80211_TKIP_MICLEN]; in ieee80211_tkip_decrypt()
466 crc = ether_crc32_le_update(crc, mic0, IEEE80211_TKIP_MICLEN); in ieee80211_tkip_decrypt()
470 crc0 = *(u_int32_t *)(buf + IEEE80211_TKIP_MICLEN); in ieee80211_tkip_decrypt()
481 if (timingsafe_bcmp(mic0, mic, IEEE80211_TKIP_MICLEN) != 0) { in ieee80211_tkip_decrypt()
H A Dieee80211_crypto.h51 #define IEEE80211_TKIP_MICLEN 8 macro
168 u_int8_t[IEEE80211_TKIP_MICLEN]);
/openbsd/sys/dev/pci/
H A Dif_wpireg.h411 uint8_t tkip[IEEE80211_TKIP_MICLEN];
H A Dif_iwnreg.h634 uint8_t rxmic[IEEE80211_TKIP_MICLEN];
635 uint8_t txmic[IEEE80211_TKIP_MICLEN];
/openbsd/sys/dev/ic/
H A Dqwx.c24308 IEEE80211_TKIP_MICLEN, &off) == NULL) { in qwx_dp_tx()