From: nobody@vox.xs4all.nl (An0nYm0Us UsEr)
To: cypherpunks@toad.com
Message Hash: dc135854861e4998316dace276868da526b1daaf4d4ef4977564f44f669aa50b
Message ID: <199409132036.AA24724@xs1.xs4all.nl>
Reply To: N/A
UTC Datetime: 1994-09-13 20:37:09 UTC
Raw Date: Tue, 13 Sep 94 13:37:09 PDT
From: nobody@vox.xs4all.nl (An0nYm0Us UsEr)
Date: Tue, 13 Sep 94 13:37:09 PDT
To: cypherpunks@toad.com
Subject: RC4 ?
Message-ID: <199409132036.AA24724@xs1.xs4all.nl>
MIME-Version: 1.0
Content-Type: text/plain
SUBJECT: RC4 Source Code
I've tested this. It is compatible with the RC4 object module
that comes in the various RSA toolkits.
/* rc4.h */
typedef struct rc4_key
{
unsigned char state[256];
unsigned char x;
unsigned char y;
} rc4_key;
void prepare_key(unsigned char *key_data_ptr,int key_data_len,
rc4_key *key);
void rc4(unsigned char *buffer_ptr,int buffer_len,rc4_key * key);
/*rc4.c */
#include "rc4.h"
static void swap_byte(unsigned char *a, unsigned char *b);
void prepare_key(unsigned char *key_data_ptr, int key_data_len,
rc4_key *key)
{
unsigned char swapByte;
unsigned char index1;
unsigned char index2;
unsigned char* state;
short counter;
state = &key->state[0];
for(counter = 0; counter < 256; counter++)
state[counter] = counter;
key->x = 0;
key->y = 0;
index1 = 0;
index2 = 0;
for(counter = 0; counter < 256; counter++)
{
index2 = (key_data_ptr[index1] + state[counter] +
index2) % 256;
swap_byte(&state[counter], &state[index2]);
index1 = (index1 + 1) % key_data_len;
}
}
void rc4(unsigned char *buffer_ptr, int buffer_len, rc4_key
*key)
{
unsigned char x;
unsigned char y;
unsigned char* state;
unsigned char xorIndex;
short counter;
x = key->x;
y = key->y;
state = &key->state[0];
for(counter = 0; counter < buffer_len; counter ++)
{
x = (x + 1) % 256;
y = (state[x] + y) % 256;
swap_byte(&state[x], &state[y]);
xorIndex = state[x] + (state[y]) % 256;
buffer_ptr[counter] ^= state[xorIndex];
}
key->x = x;
key->y = y;
}
static void swap_byte(unsigned char *a, unsigned char *b)
{
unsigned char swapByte;
swapByte = *a;
*a = *b;
*b = swapByte;
}
Return to September 1994
Return to “nobody@vox.xs4all.nl (An0nYm0Us UsEr)”
1994-09-13 (Tue, 13 Sep 94 13:37:09 PDT) - RC4 ? - nobody@vox.xs4all.nl (An0nYm0Us UsEr)