/*
Christophe Devine
c.devine@cr0.net
http://www.cr0.net:8040/code/crypto/
*/
#ifndef _RC4_H
#define _RC4_H
struct rc4_state
{
int x, y, m[256];
};
void rc4_setup( struct rc4_state *s, unsigned char *key, int length );
void rc4_crypt( struct rc4_state *s, unsigned char *data, int length );
#endif /* rc4.h */