MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / drivers / usb / net / Zydas / zdencrypt.h
blob987afa4dc26f8244369f49a862c424af7fb26a78
1 #ifndef _ZD_ENCRYPT_H
2 #define _ZD_ENCRYPT_H
4 #if defined(PHY_1202)
6 void initWepState(void);
8 void zd_EncryptData (
9 U8 Wep_Key_Len,
10 U8* Wep_Key,
11 U8* Wep_Iv,
12 U16 Num_Bytes,
13 U8* Inbuf,
14 U8* Outbuf,
15 U32* Icv);
18 BOOLEAN zd_DecryptData (
19 U8 Wep_Key_Len,
20 U8* Wep_Key,
21 U8* Wep_Iv,
22 U16 Num_Bytes,
23 U8* Inbuf,
24 U8* Outbuf,
25 U32* Icv);
27 #endif
28 #endif