home *** CD-ROM | disk | FTP | other *** search
- /* 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
-
-