mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
14 lines
280 B
C
14 lines
280 B
C
|
|
#pragma once
|
|
|
|
typedef struct _RC4_CONTEXT
|
|
{
|
|
unsigned char state[256];
|
|
unsigned char x, y;
|
|
} RC4_CONTEXT;
|
|
|
|
void rc4_init(RC4_CONTEXT *a4i, const unsigned char *key, unsigned int keyLen);
|
|
|
|
void rc4_crypt(RC4_CONTEXT *a4i, unsigned char *inoutString, unsigned int length);
|
|
|