Home | History | Annotate | Download | only in drivers

Lines Matching refs:wep

949 	NDIS_802_11_WEP *wep;
954 wep = os_zalloc(len);
955 if (wep == NULL)
957 wep->Length = len;
958 wep->KeyIndex = key_idx;
960 wep->KeyIndex |= 1 << 31;
963 wep->KeyIndex |= 1 << 30;
965 wep->KeyLength = key_len;
966 os_memcpy(wep->KeyMaterial, key, key_len);
969 (u8 *) wep, len);
970 res = ndis_set_oid(drv, OID_802_11_ADD_WEP, (char *) wep, len);
972 os_free(wep);
1059 * so static WEP keys needs to be set again after this. */
1079 /* Re-set WEP keys if static WEP configuration is used. */
1084 wpa_printf(MSG_DEBUG, "NDIS: Re-setting static WEP "
1121 wpa_printf(MSG_DEBUG, "NDIS: Set dummy WEP key as a "
1714 wpa_printf(MSG_DEBUG, "NDIS: WEP encryption supported");