]> git.cryptolib.org Git - arm-crypto-lib.git/blob - arcfour/arcfour.c
improving present
[arm-crypto-lib.git] / arcfour / arcfour.c
1 /* arcfour.c */
2 /*
3     This file is part of the ARM-Crypto-Lib.
4     Copyright (C) 2006-2010  Daniel Otte (daniel.otte@rub.de)
5
6     This program is free software: you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19 /*
20  * File:        arcfour.c
21  * Author:      Daniel Otte
22  * email:       daniel.otte@rub.de
23  * Date:        2006-06-07
24  * License:     GPLv3 or later
25  * Description: Implementation of the ARCFOUR (RC4 compatible) stream cipher algorithm.
26  *
27  */
28
29 #include <stdint.h>
30 #include "arcfour.h"
31
32 /*
33  * length is length of key in bits!
34  */
35
36 void arcfour_init(const void *key, uint16_t length_b, arcfour_ctx_t *ctx){
37         uint8_t t;
38         uint8_t x=0,y=0;
39         length_b /= 8;
40         const uint8_t *kptr, *limit;
41         limit = (uint8_t*)key + length_b;
42         kptr = key;
43         do{
44                 ctx->s[x]=x;
45         }while(++x);
46
47         do{
48                 y += ctx->s[x] + *kptr++;
49                 if(kptr==limit){
50                         kptr=key;
51                 }
52                 /* ctx->s[y] <--> ctx->s[x] */
53                 t = ctx->s[y];
54                 ctx->s[y] = ctx->s[x];
55                 ctx->s[x] = t;
56         }while(++x);
57         ctx->i = ctx->j = 0;
58 }
59
60 uint8_t arcfour_gen(arcfour_ctx_t *ctx){
61         uint8_t t;
62         ctx->i++;
63         ctx->j += ctx->s[ctx->i];
64         /* ctx->s[i] <--> ctx->s[j] */
65         t = ctx->s[ctx->j];
66         ctx->s[ctx->j] = ctx->s[ctx->i];
67         ctx->s[ctx->i] = t;
68         return ctx->s[(ctx->s[ctx->j] + ctx->s[ctx->i]) & 0xff];
69 }
70