Home | History | Annotate | Download | only in drivers

Lines Matching refs:wep

1133 	NDIS_802_11_WEP *wep;
1140 wep = os_zalloc(len);
1141 if (wep == NULL)
1144 wep->Length = len;
1145 wep->KeyIndex = key_idx;
1148 wep->KeyIndex |= 0x80000000;
1150 wep->KeyLength = key_len;
1151 os_memcpy(wep->KeyMaterial, key, key_len);
1154 (const u8 *) wep, len);
1155 res = ralink_set_oid(drv, OID_802_11_ADD_WEP, (char *) wep, len);
1157 os_free(wep);
1455 /* static WEP */