Home | History | Annotate | Download | only in drivers

Lines Matching defs:wep

963 	NDIS_802_11_WEP *wep;
968 wep = os_zalloc(len);
969 if (wep == NULL)
971 wep->Length = len;
972 wep->KeyIndex = key_idx;
974 wep->KeyIndex |= 1 << 31;
977 wep->KeyIndex |= 1 << 30;
979 wep->KeyLength = key_len;
980 os_memcpy(wep->KeyMaterial, key, key_len);
983 (u8 *) wep, len);
984 res = ndis_set_oid(drv, OID_802_11_ADD_WEP, (char *) wep, len);
986 os_free(wep);
1073 * so static WEP keys needs to be set again after this. */
1093 /* Re-set WEP keys if static WEP configuration is used. */
1098 wpa_printf(MSG_DEBUG, "NDIS: Re-setting static WEP "
1135 wpa_printf(MSG_DEBUG, "NDIS: Set dummy WEP key as a "
1728 wpa_printf(MSG_DEBUG, "NDIS: WEP encryption supported");