Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching refs:wep

874 	NDIS_802_11_WEP *wep;
879 wep = os_zalloc(len);
880 if (wep == NULL)
882 wep->Length = len;
883 wep->KeyIndex = key_idx;
885 wep->KeyIndex |= 1 << 31;
888 wep->KeyIndex |= 1 << 30;
890 wep->KeyLength = key_len;
891 os_memcpy(wep->KeyMaterial, key, key_len);
894 (char *) wep, len);
895 res = ndis_set_oid(drv, OID_802_11_ADD_WEP, (char *) wep, len);
897 os_free(wep);
982 * so static WEP keys needs to be set again after this. */
1002 /* Re-set WEP keys if static WEP configuration is used. */
1008 wpa_printf(MSG_DEBUG, "NDIS: Re-setting static WEP "
1588 wpa_printf(MSG_DEBUG, "NDIS: WEP encryption supported");