2016-05-17 18:24:46 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 10:56:39 +00:00
|
|
|
*
|
2018-12-06 12:52:38 +00:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 18:24:46 +00:00
|
|
|
* 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
|
1998-12-21 10:56:39 +00:00
|
|
|
*/
|
|
|
|
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/rc4.h>
|
1998-12-21 10:56:39 +00:00
|
|
|
#include "rc4_locl.h"
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/opensslv.h>
|
1998-12-21 10:56:39 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
const char *RC4_options(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
if (sizeof(RC4_INT) == 1)
|
2017-10-17 14:04:09 +00:00
|
|
|
return "rc4(char)";
|
2015-01-22 03:40:55 +00:00
|
|
|
else
|
2017-10-17 14:04:09 +00:00
|
|
|
return "rc4(int)";
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2015-01-16 09:21:50 +00:00
|
|
|
/*-
|
|
|
|
* RC4 as implemented from a posting from
|
1998-12-21 10:56:39 +00:00
|
|
|
* Newsgroups: sci.crypt
|
|
|
|
* Subject: RC4 Algorithm revealed.
|
|
|
|
* Message-ID: <sternCvKL4B.Hyy@netcom.com>
|
|
|
|
* Date: Wed, 14 Sep 1994 06:35:31 GMT
|
|
|
|
*/
|
|
|
|
|
2000-02-05 10:41:05 +00:00
|
|
|
void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data)
|
2015-01-22 03:40:55 +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;
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2004-11-21 10:36:25 +00:00
|
|
|
#define SK_LOOP(d,n) { \
|
2015-01-22 03:40:55 +00:00
|
|
|
tmp=d[(n)]; \
|
|
|
|
id2 = (data[id1] + tmp + id2) & 0xff; \
|
|
|
|
if (++id1 == len) id1=0; \
|
|
|
|
d[(n)]=d[id2]; \
|
|
|
|
d[id2]=tmp; }
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2015-01-22 03:40:55 +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);
|
|
|
|
}
|
|
|
|
}
|