/linux-6.6.21/net/wireless/ |
D | lib80211_crypt_wep.c | 66 struct lib80211_wep_data *wep = priv; in lib80211_wep_build_iv() local 77 klen = 3 + wep->key_len; in lib80211_wep_build_iv() 79 wep->iv++; in lib80211_wep_build_iv() 84 if ((wep->iv & 0xff00) == 0xff00) { in lib80211_wep_build_iv() 85 u8 B = (wep->iv >> 16) & 0xff; in lib80211_wep_build_iv() 87 wep->iv += 0x0100; in lib80211_wep_build_iv() 91 *pos++ = (wep->iv >> 16) & 0xff; in lib80211_wep_build_iv() 92 *pos++ = (wep->iv >> 8) & 0xff; in lib80211_wep_build_iv() 93 *pos++ = wep->iv & 0xff; in lib80211_wep_build_iv() 94 *pos++ = wep->key_idx << 6; in lib80211_wep_build_iv() [all …]
|
/linux-6.6.21/drivers/staging/rtl8192u/ieee80211/ |
D | ieee80211_crypt_wep.c | 68 struct prism2_wep_data *wep = priv; in prism2_wep_encrypt() local 85 klen = 3 + wep->key_len; in prism2_wep_encrypt() 87 wep->iv++; in prism2_wep_encrypt() 93 if ((wep->iv & 0xff00) == 0xff00) { in prism2_wep_encrypt() 94 u8 B = (wep->iv >> 16) & 0xff; in prism2_wep_encrypt() 97 wep->iv += 0x0100; in prism2_wep_encrypt() 101 *pos++ = key[0] = (wep->iv >> 16) & 0xff; in prism2_wep_encrypt() 102 *pos++ = key[1] = (wep->iv >> 8) & 0xff; in prism2_wep_encrypt() 103 *pos++ = key[2] = wep->iv & 0xff; in prism2_wep_encrypt() 104 *pos++ = wep->key_idx << 6; in prism2_wep_encrypt() [all …]
|
/linux-6.6.21/drivers/staging/rtl8192e/ |
D | rtllib_crypt_wep.c | 61 struct prism2_wep_data *wep = priv; in prism2_wep_encrypt() local 81 klen = 3 + wep->key_len; in prism2_wep_encrypt() 83 wep->iv++; in prism2_wep_encrypt() 89 if ((wep->iv & 0xff00) == 0xff00) { in prism2_wep_encrypt() 90 u8 B = (wep->iv >> 16) & 0xff; in prism2_wep_encrypt() 93 wep->iv += 0x0100; in prism2_wep_encrypt() 97 *pos++ = key[0] = (wep->iv >> 16) & 0xff; in prism2_wep_encrypt() 98 *pos++ = key[1] = (wep->iv >> 8) & 0xff; in prism2_wep_encrypt() 99 *pos++ = key[2] = wep->iv & 0xff; in prism2_wep_encrypt() 100 *pos++ = wep->key_idx << 6; in prism2_wep_encrypt() [all …]
|
/linux-6.6.21/drivers/net/wireless/ti/wl12xx/ |
D | debugfs.c | 54 WL12XX_DEBUGFS_FWSTATS_FILE(wep, addr_key_count, "%u"); 55 WL12XX_DEBUGFS_FWSTATS_FILE(wep, default_key_count, "%u"); 57 WL12XX_DEBUGFS_FWSTATS_FILE(wep, key_not_found, "%u"); 58 WL12XX_DEBUGFS_FWSTATS_FILE(wep, decrypt_fail, "%u"); 59 WL12XX_DEBUGFS_FWSTATS_FILE(wep, packets, "%u"); 60 WL12XX_DEBUGFS_FWSTATS_FILE(wep, interrupt, "%u"); 154 DEBUGFS_FWSTATS_ADD(wep, addr_key_count); in wl12xx_debugfs_add_files() 155 DEBUGFS_FWSTATS_ADD(wep, default_key_count); in wl12xx_debugfs_add_files() 157 DEBUGFS_FWSTATS_ADD(wep, key_not_found); in wl12xx_debugfs_add_files() 158 DEBUGFS_FWSTATS_ADD(wep, decrypt_fail); in wl12xx_debugfs_add_files() [all …]
|
D | acx.h | 248 struct wl12xx_acx_wep_statistics wep; member
|
/linux-6.6.21/drivers/net/wireless/ti/wl1251/ |
D | debugfs.c | 136 DEBUGFS_FWSTATS_FILE(wep, addr_key_count, 20, "%u"); 137 DEBUGFS_FWSTATS_FILE(wep, default_key_count, 20, "%u"); 139 DEBUGFS_FWSTATS_FILE(wep, key_not_found, 20, "%u"); 140 DEBUGFS_FWSTATS_FILE(wep, decrypt_fail, 20, "%u"); 141 DEBUGFS_FWSTATS_FILE(wep, packets, 20, "%u"); 142 DEBUGFS_FWSTATS_FILE(wep, interrupt, 20, "%u"); 276 DEBUGFS_FWSTATS_DEL(wep, addr_key_count); in wl1251_debugfs_delete_files() 277 DEBUGFS_FWSTATS_DEL(wep, default_key_count); in wl1251_debugfs_delete_files() 279 DEBUGFS_FWSTATS_DEL(wep, key_not_found); in wl1251_debugfs_delete_files() 280 DEBUGFS_FWSTATS_DEL(wep, decrypt_fail); in wl1251_debugfs_delete_files() [all …]
|
D | acx.h | 1067 struct acx_wep_statistics wep; member
|
/linux-6.6.21/drivers/staging/rtl8712/ |
D | rtl871x_ioctl_set.c | 330 struct NDIS_802_11_WEP *wep) in r8712_set_802_11_add_wep() argument 335 keyid = wep->KeyIndex & 0x3fffffff; in r8712_set_802_11_add_wep() 338 switch (wep->KeyLength) { in r8712_set_802_11_add_wep() 349 memcpy(psecuritypriv->DefKey[keyid].skey, &wep->KeyMaterial, in r8712_set_802_11_add_wep() 350 wep->KeyLength); in r8712_set_802_11_add_wep() 351 psecuritypriv->DefKeylen[keyid] = wep->KeyLength; in r8712_set_802_11_add_wep()
|
D | rtl871x_ioctl_set.h | 32 struct NDIS_802_11_WEP *wep);
|
D | rtl871x_ioctl_linux.c | 1495 struct NDIS_802_11_WEP wep; in r8711_wx_set_enc() local 1501 memset(&wep, 0, sizeof(struct NDIS_802_11_WEP)); in r8711_wx_set_enc() 1551 wep.KeyIndex = key; in r8711_wx_set_enc() 1553 wep.KeyLength = erq->length <= 5 ? 5 : 13; in r8711_wx_set_enc() 1554 wep.Length = wep.KeyLength + in r8711_wx_set_enc() 1557 wep.KeyLength = 0; in r8711_wx_set_enc() 1579 wep.KeyIndex |= 0x80000000; /* transmit key */ in r8711_wx_set_enc() 1580 memcpy(wep.KeyMaterial, keybuf, wep.KeyLength); in r8711_wx_set_enc() 1581 if (r8712_set_802_11_add_wep(padapter, &wep)) in r8711_wx_set_enc()
|
/linux-6.6.21/drivers/staging/rtl8723bs/core/ |
D | rtw_ioctl_set.c | 424 u8 rtw_set_802_11_add_wep(struct adapter *padapter, struct ndis_802_11_wep *wep) in rtw_set_802_11_add_wep() argument 431 keyid = wep->key_index & 0x3fffffff; in rtw_set_802_11_add_wep() 438 switch (wep->key_length) { in rtw_set_802_11_add_wep() 450 memcpy(&(psecuritypriv->dot11DefKey[keyid].skey[0]), &(wep->key_material), wep->key_length); in rtw_set_802_11_add_wep() 452 psecuritypriv->dot11DefKeylen[keyid] = wep->key_length; in rtw_set_802_11_add_wep()
|
/linux-6.6.21/drivers/staging/rtl8723bs/include/ |
D | rtw_ioctl_set.h | 14 u8 rtw_set_802_11_add_wep(struct adapter *padapter, struct ndis_802_11_wep *wep);
|
/linux-6.6.21/net/mac80211/ |
D | Makefile | 9 wep.o \
|
/linux-6.6.21/drivers/net/ethernet/toshiba/ |
D | ps3_gelic_wireless.c | 1744 struct gelic_eurus_wep_cfg *wep; in gelic_wl_do_wep_setup() local 1752 wep = (struct gelic_eurus_wep_cfg *)__get_free_page(GFP_KERNEL); in gelic_wl_do_wep_setup() 1753 if (!wep) in gelic_wl_do_wep_setup() 1756 memset(wep, 0, sizeof(*wep)); in gelic_wl_do_wep_setup() 1774 memcpy(wep->key[i], wl->key[i], wl->key_len[i]); in gelic_wl_do_wep_setup() 1785 wep->security = cpu_to_be16(GELIC_EURUS_WEP_SEC_104BIT); in gelic_wl_do_wep_setup() 1788 wep->security = cpu_to_be16(GELIC_EURUS_WEP_SEC_40BIT); in gelic_wl_do_wep_setup() 1792 wep->security = cpu_to_be16(GELIC_EURUS_WEP_SEC_NONE); in gelic_wl_do_wep_setup() 1797 wep, sizeof(*wep)); in gelic_wl_do_wep_setup() 1805 free_page((unsigned long)wep); in gelic_wl_do_wep_setup()
|
/linux-6.6.21/drivers/net/wireless/marvell/mwifiex/ |
D | README | 48 WEP encryption, wep keys can be specified in the command.
|
D | sta_cmd.c | 727 km->key_param_set.key_params.wep.key_len = in mwifiex_cmd_802_11_key_material_v2() 729 memcpy(km->key_param_set.key_params.wep.key, in mwifiex_cmd_802_11_key_material_v2()
|
D | fw.h | 969 struct mwifiex_wep_param wep; member
|
/linux-6.6.21/drivers/net/wireless/ath/wcn36xx/ |
D | hal.h | 1050 u8 wep:1; member 1070 u8 wep:1;
|