mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:35:41 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
67
sdk/lib/cryptlib/rc4.c
Normal file
67
sdk/lib/cryptlib/rc4.c
Normal file
|
@ -0,0 +1,67 @@
|
|||
/*
|
||||
* Copyright 2006 Mike McCormack
|
||||
*
|
||||
* based on arc4.cpp - written and placed in the public domain by Wei Dai
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
/* http://cryptopp.sourceforge.net/docs/ref521/arc4_8cpp-source.html */
|
||||
|
||||
#include "rc4.h"
|
||||
|
||||
void rc4_init(RC4_CONTEXT *a4i, const unsigned char *key, unsigned int keyLen)
|
||||
{
|
||||
unsigned int keyIndex = 0, stateIndex = 0;
|
||||
unsigned int i, a;
|
||||
|
||||
a4i->x = a4i->y = 0;
|
||||
|
||||
for (i=0; i<256; i++)
|
||||
a4i->state[i] = i;
|
||||
|
||||
for (i=0; i<256; i++)
|
||||
{
|
||||
a = a4i->state[i];
|
||||
stateIndex += key[keyIndex] + a;
|
||||
stateIndex &= 0xff;
|
||||
a4i->state[i] = a4i->state[stateIndex];
|
||||
a4i->state[stateIndex] = a;
|
||||
if (++keyIndex >= keyLen)
|
||||
keyIndex = 0;
|
||||
}
|
||||
}
|
||||
|
||||
void rc4_crypt(RC4_CONTEXT *a4i, unsigned char *inoutString, unsigned int length)
|
||||
{
|
||||
unsigned char *const s=a4i->state;
|
||||
unsigned int x = a4i->x;
|
||||
unsigned int y = a4i->y;
|
||||
unsigned int a, b;
|
||||
|
||||
while(length--)
|
||||
{
|
||||
x = (x+1) & 0xff;
|
||||
a = s[x];
|
||||
y = (y+a) & 0xff;
|
||||
b = s[y];
|
||||
s[x] = b;
|
||||
s[y] = a;
|
||||
*inoutString++ ^= s[(a+b) & 0xff];
|
||||
}
|
||||
|
||||
a4i->x = x;
|
||||
a4i->y = y;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue