#include <nitroWiFi/wcm.h>
typedef struct
{
u8 mode;
u8 keyId;
u8 key[80];
} WCMWepDesc;
Structure that defines WEP encryption settings used when performing DCF communication with wireless access points. Defines the WEP encryption type, the WEP key number used during data transmission, and the WEP key data string.
mode |
Specifies the WEP encryption type. If WCM_WEPMODE_NONE is specified, no encryption is used. If any other encryption setting is specified, WEP encryption using the data string specified by key will be performed based on that setting. For details, see WCM library constants. |
keyId |
The WEP key number used in data transmission. The range is 0-3. |
key |
Specifies the 80-byte WEP key data string. Use a data string consisting of four 20-byte WEP key data strings. There is some data not used depending on the encryption type, and that portion is simply ignored. |
07/22/2005 Initial version.