2018-09-13 19:18:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2000-01-10 06:22:05 +00:00
|
|
|
*
|
2018-09-13 19:18:07 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2000-01-10 06:22:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <openssl/rc4.h>
|
2020-03-17 21:27:57 +00:00
|
|
|
#include "rc4_local.h"
|
2000-01-10 06:22:05 +00:00
|
|
|
#include <openssl/opensslv.h>
|
|
|
|
|
|
|
|
const char *RC4_options(void)
|
2015-03-20 15:28:40 +00:00
|
|
|
{
|
|
|
|
if (sizeof(RC4_INT) == 1)
|
2018-09-13 19:18:07 +00:00
|
|
|
return "rc4(char)";
|
2015-03-20 15:28:40 +00:00
|
|
|
else
|
2018-09-13 19:18:07 +00:00
|
|
|
return "rc4(int)";
|
2015-03-20 15:28:40 +00:00
|
|
|
}
|
2000-01-10 06:22:05 +00:00
|
|
|
|
2015-03-20 15:28:40 +00:00
|
|
|
/*-
|
|
|
|
* RC4 as implemented from a posting from
|
2000-01-10 06:22:05 +00:00
|
|
|
* Newsgroups: sci.crypt
|
|
|
|
* Subject: RC4 Algorithm revealed.
|
|
|
|
* Message-ID: <sternCvKL4B.Hyy@netcom.com>
|
|
|
|
* Date: Wed, 14 Sep 1994 06:35:31 GMT
|
|
|
|
*/
|
|
|
|
|
2018-09-13 19:18:07 +00:00
|
|
|
void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data)
|
2015-03-20 15:28:40 +00:00
|
|
|
{
|
|
|
|
register RC4_INT tmp;
|
|
|
|
register int id1, id2;
|
|
|
|
register RC4_INT *d;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
d = &(key->data[0]);
|
|
|
|
key->x = 0;
|
|
|
|
key->y = 0;
|
|
|
|
id1 = id2 = 0;
|
2000-01-10 06:22:05 +00:00
|
|
|
|
2006-07-29 19:10:21 +00:00
|
|
|
#define SK_LOOP(d,n) { \
|
2015-03-20 15:28:40 +00:00
|
|
|
tmp=d[(n)]; \
|
|
|
|
id2 = (data[id1] + tmp + id2) & 0xff; \
|
|
|
|
if (++id1 == len) id1=0; \
|
|
|
|
d[(n)]=d[id2]; \
|
|
|
|
d[id2]=tmp; }
|
2000-01-10 06:22:05 +00:00
|
|
|
|
2015-03-20 15:28:40 +00:00
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
d[i] = i;
|
|
|
|
for (i = 0; i < 256; i += 4) {
|
|
|
|
SK_LOOP(d, i + 0);
|
|
|
|
SK_LOOP(d, i + 1);
|
|
|
|
SK_LOOP(d, i + 2);
|
|
|
|
SK_LOOP(d, i + 3);
|
|
|
|
}
|
|
|
|
}
|