blob: 9856c08b3d77e4a1317b32bbcd18deb0e8687052 [file] [log] [blame]
Forest Bond5449c682009-04-25 10:30:44 -04001/*
Jim Lieb612822f2009-08-12 14:54:03 -07002 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
Forest Bond5449c682009-04-25 10:30:44 -04004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
Jim Lieb612822f2009-08-12 14:54:03 -070019 * File: rc4.c
20 *
Forest Bond5449c682009-04-25 10:30:44 -040021 * Purpose:
22 *
23 * Functions:
24 *
25 * Revision History:
26 *
27 * Author: Kyle Hsu
28 *
29 * Date: Sep 4, 2002
30 *
31 */
32
Forest Bond5449c682009-04-25 10:30:44 -040033#include "rc4.h"
Forest Bond5449c682009-04-25 10:30:44 -040034
Charles Clément2989e962010-06-05 15:13:47 -070035void rc4_init(PRC4Ext pRC4, unsigned char *pbyKey, unsigned int cbKey_len)
Forest Bond5449c682009-04-25 10:30:44 -040036{
Charles Clémentb6e95cd2010-06-02 09:52:01 -070037 unsigned int ust1, ust2;
38 unsigned int keyindex;
39 unsigned int stateindex;
Charles Clément2989e962010-06-05 15:13:47 -070040 unsigned char *pbyst;
Charles Clémentb6e95cd2010-06-02 09:52:01 -070041 unsigned int idx;
Forest Bond5449c682009-04-25 10:30:44 -040042
43 pbyst = pRC4->abystate;
44 pRC4->ux = 0;
45 pRC4->uy = 0;
46 for (idx = 0; idx < 256; idx++)
Charles Clément3fc9b582010-06-24 11:02:27 -070047 pbyst[idx] = (unsigned char)idx;
Forest Bond5449c682009-04-25 10:30:44 -040048 keyindex = 0;
49 stateindex = 0;
50 for (idx = 0; idx < 256; idx++) {
51 ust1 = pbyst[idx];
52 stateindex = (stateindex + pbyKey[keyindex] + ust1) & 0xff;
53 ust2 = pbyst[stateindex];
Charles Clément3fc9b582010-06-24 11:02:27 -070054 pbyst[stateindex] = (unsigned char)ust1;
55 pbyst[idx] = (unsigned char)ust2;
Forest Bond5449c682009-04-25 10:30:44 -040056 if (++keyindex >= cbKey_len)
57 keyindex = 0;
58 }
59}
60
Charles Clémentb6e95cd2010-06-02 09:52:01 -070061unsigned int rc4_byte(PRC4Ext pRC4)
Forest Bond5449c682009-04-25 10:30:44 -040062{
Charles Clémentb6e95cd2010-06-02 09:52:01 -070063 unsigned int ux;
64 unsigned int uy;
65 unsigned int ustx, usty;
Charles Clément2989e962010-06-05 15:13:47 -070066 unsigned char *pbyst;
Forest Bond5449c682009-04-25 10:30:44 -040067
68 pbyst = pRC4->abystate;
69 ux = (pRC4->ux + 1) & 0xff;
70 ustx = pbyst[ux];
71 uy = (ustx + pRC4->uy) & 0xff;
72 usty = pbyst[uy];
73 pRC4->ux = ux;
74 pRC4->uy = uy;
Charles Clément3fc9b582010-06-24 11:02:27 -070075 pbyst[uy] = (unsigned char)ustx;
76 pbyst[ux] = (unsigned char)usty;
Forest Bond5449c682009-04-25 10:30:44 -040077
78 return pbyst[(ustx + usty) & 0xff];
79}
80
Charles Clément2989e962010-06-05 15:13:47 -070081void rc4_encrypt(PRC4Ext pRC4, unsigned char *pbyDest,
82 unsigned char *pbySrc, unsigned int cbData_len)
Forest Bond5449c682009-04-25 10:30:44 -040083{
Charles Clémentb6e95cd2010-06-02 09:52:01 -070084 unsigned int ii;
Forest Bond5449c682009-04-25 10:30:44 -040085 for (ii = 0; ii < cbData_len; ii++)
Charles Clément3fc9b582010-06-24 11:02:27 -070086 pbyDest[ii] = (unsigned char)(pbySrc[ii] ^ rc4_byte(pRC4));
Forest Bond5449c682009-04-25 10:30:44 -040087}