home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Online 1998 February
/
PCO_0298.ISO
/
filesbbs
/
win95
/
cryptext.exe
/
RC4.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-11-09
|
291 b
|
25 lines
/* rc4.h */
#ifndef __RC4_H
#define __RC4_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct rc4Key
{
BYTE state[256];
BYTE x;
BYTE y;
} rc4Key;
void rc4Setup (LPBYTE, int, rc4Key *);
void rc4 (LPBYTE, int, rc4Key *);
#ifdef __cplusplus
}
#endif
#endif