repo.or.cz
/
linux-2.6.9-moxart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
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
blob
987afa4dc26f8244369f49a862c424af7fb26a78
1
#ifndef _ZD_ENCRYPT_H
2
#define _ZD_ENCRYPT_H
3
4
#if defined(PHY_1202)
5
6
void
initWepState
(
void
);
7
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
);
16
17
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
);
26
27
#endif
28
#endif
29