Home
last modified time | relevance | path

Searched refs:wep (Results 1 – 21 of 21) sorted by relevance

/linux-6.1.9/net/wireless/
Dlib80211_crypt_wep.c66 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.1.9/drivers/staging/rtl8192u/ieee80211/
Dieee80211_crypt_wep.c68 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.1.9/drivers/staging/rtl8192e/
Drtllib_crypt_wep.c63 struct prism2_wep_data *wep = priv; in prism2_wep_encrypt() local
83 klen = 3 + wep->key_len; in prism2_wep_encrypt()
85 wep->iv++; in prism2_wep_encrypt()
91 if ((wep->iv & 0xff00) == 0xff00) { in prism2_wep_encrypt()
92 u8 B = (wep->iv >> 16) & 0xff; in prism2_wep_encrypt()
95 wep->iv += 0x0100; in prism2_wep_encrypt()
99 *pos++ = key[0] = (wep->iv >> 16) & 0xff; in prism2_wep_encrypt()
100 *pos++ = key[1] = (wep->iv >> 8) & 0xff; in prism2_wep_encrypt()
101 *pos++ = key[2] = wep->iv & 0xff; in prism2_wep_encrypt()
102 *pos++ = wep->key_idx << 6; in prism2_wep_encrypt()
[all …]
/linux-6.1.9/drivers/net/wireless/ti/wl12xx/
Ddebugfs.c54 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 …]
Dacx.h248 struct wl12xx_acx_wep_statistics wep; member
/linux-6.1.9/drivers/net/wireless/ti/wl1251/
Ddebugfs.c136 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 …]
Dacx.h1067 struct acx_wep_statistics wep; member
/linux-6.1.9/drivers/staging/rtl8712/
Drtl871x_ioctl_set.c330 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()
Drtl871x_ioctl_set.h32 struct NDIS_802_11_WEP *wep);
Drtl871x_ioctl_linux.c1495 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.1.9/drivers/staging/rtl8723bs/core/
Drtw_ioctl_set.c423 u8 rtw_set_802_11_add_wep(struct adapter *padapter, struct ndis_802_11_wep *wep) in rtw_set_802_11_add_wep() argument
430 keyid = wep->key_index & 0x3fffffff; in rtw_set_802_11_add_wep()
437 switch (wep->key_length) { in rtw_set_802_11_add_wep()
449 memcpy(&(psecuritypriv->dot11DefKey[keyid].skey[0]), &(wep->key_material), wep->key_length); in rtw_set_802_11_add_wep()
451 psecuritypriv->dot11DefKeylen[keyid] = wep->key_length; in rtw_set_802_11_add_wep()
/linux-6.1.9/drivers/staging/r8188eu/core/
Drtw_ioctl_set.c386 u8 rtw_set_802_11_add_wep(struct adapter *padapter, struct ndis_802_11_wep *wep) in rtw_set_802_11_add_wep() argument
392 keyid = wep->KeyIndex & 0x3fffffff; in rtw_set_802_11_add_wep()
399 switch (wep->KeyLength) { in rtw_set_802_11_add_wep()
411 memcpy(&psecuritypriv->dot11DefKey[keyid].skey[0], &wep->KeyMaterial, wep->KeyLength); in rtw_set_802_11_add_wep()
413 psecuritypriv->dot11DefKeylen[keyid] = wep->KeyLength; in rtw_set_802_11_add_wep()
/linux-6.1.9/drivers/staging/r8188eu/include/
Drtw_ioctl_set.h14 u8 rtw_set_802_11_add_wep(struct adapter *adapter, struct ndis_802_11_wep *wep);
/linux-6.1.9/drivers/staging/rtl8723bs/include/
Drtw_ioctl_set.h14 u8 rtw_set_802_11_add_wep(struct adapter *padapter, struct ndis_802_11_wep *wep);
/linux-6.1.9/net/mac80211/
DMakefile9 wep.o \
/linux-6.1.9/drivers/net/ethernet/toshiba/
Dps3_gelic_wireless.c1744 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.1.9/drivers/staging/r8188eu/os_dep/
Dioctl_linux.c1526 struct ndis_802_11_wep wep; in rtw_wx_set_enc() local
1533 memset(&wep, 0, sizeof(struct ndis_802_11_wep)); in rtw_wx_set_enc()
1584 wep.KeyIndex = key; in rtw_wx_set_enc()
1586 wep.KeyLength = erq->length <= 5 ? 5 : 13; in rtw_wx_set_enc()
1588 wep.Length = wep.KeyLength + offsetof(struct ndis_802_11_wep, KeyMaterial); in rtw_wx_set_enc()
1590 wep.KeyLength = 0; in rtw_wx_set_enc()
1612 wep.KeyIndex |= 0x80000000; in rtw_wx_set_enc()
1614 memcpy(wep.KeyMaterial, keybuf, wep.KeyLength); in rtw_wx_set_enc()
1616 if (!rtw_set_802_11_add_wep(padapter, &wep)) { in rtw_wx_set_enc()
/linux-6.1.9/drivers/net/wireless/marvell/mwifiex/
DREADME48 WEP encryption, wep keys can be specified in the command.
Dsta_cmd.c727 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()
Dfw.h968 struct mwifiex_wep_param wep; member
/linux-6.1.9/drivers/net/wireless/ath/wcn36xx/
Dhal.h1050 u8 wep:1; member
1070 u8 wep:1;