source: lib/arc.c @ d444c09

Last change on this file since d444c09 was e2869bf, checked in by Wilmer van der Gaast <wilmer@…>, at 2007-10-07T22:07:25Z

"Changed" the ArcFour implementation. I'm afraid this was a waste of time,
but at least I added a neat unittest...

  • Property mode set to 100644
File size: 6.8 KB
Line 
1/***************************************************************************\
2*                                                                           *
3*  BitlBee - An IRC to IM gateway                                           *
4*  Simple (but secure) ArcFour implementation for safer password storage.   *
5*                                                                           *
6*  Copyright 2006 Wilmer van der Gaast <wilmer@gaast.net>                   *
7*                                                                           *
8*  This library is free software; you can redistribute it and/or            *
9*  modify it under the terms of the GNU Lesser General Public               *
10*  License as published by the Free Software Foundation, version            *
11*  2.1.                                                                     *
12*                                                                           *
13*  This library is distributed in the hope that it will be useful,          *
14*  but WITHOUT ANY WARRANTY; without even the implied warranty of           *
15*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU        *
16*  Lesser General Public License for more details.                          *
17*                                                                           *
18*  You should have received a copy of the GNU Lesser General Public License *
19*  along with this library; if not, write to the Free Software Foundation,  *
20*  Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA           *
21*                                                                           *
22\***************************************************************************/
23
24/*
25   This file implements ArcFour-encryption, which will mainly be used to
26   save IM passwords safely in the new XML-format. Possibly other uses will
27   come up later. It's supposed to be quite reliable (thanks to the use of a
28   6-byte IV/seed), certainly compared to the old format. The only realistic
29   way to crack BitlBee passwords now is to use a sniffer to get your hands
30   on the user's password.
31   
32   If you see that something's wrong in this implementation (I asked a
33   couple of people to look at it already, but who knows), please tell me.
34   
35   The reason I picked ArcFour is because it's pretty simple but effective,
36   so it will work without adding several KBs or an extra library dependency.
37   
38   (ArcFour is an RC4-compatible cipher. See for details:
39   http://www.mozilla.org/projects/security/pki/nss/draft-kaukonen-cipher-arcfour-03.txt)
40*/
41
42
43#include <glib.h>
44#include <gmodule.h>
45#include <stdlib.h>
46#include <string.h>
47#include "misc.h"
48#include "arc.h"
49
50/* Add some seed to the password, to make sure we *never* use the same key.
51   This defines how many bytes we use as a seed. */
52#define ARC_IV_LEN 6
53
54/* To defend against a "Fluhrer, Mantin and Shamir attack", it is recommended
55   to shuffle S[] just a bit more before you start to use it. This defines how
56   many bytes we'll request before we'll really use them for encryption. */
57#define ARC_CYCLES 1024
58
59struct arc_state *arc_keymaker( unsigned char *key, int kl, int cycles )
60{
61        struct arc_state *st;
62        int i, j, tmp;
63        unsigned char S2[256];
64       
65        st = g_malloc( sizeof( struct arc_state ) );
66        st->i = st->j = 0;
67        if( kl <= 0 )
68                kl = strlen( (char*) key );
69       
70        for( i = 0; i < 256; i ++ )
71        {
72                st->S[i] = i;
73                S2[i] = key[i%kl];
74        }
75       
76        for( i = j = 0; i < 256; i ++ )
77        {
78                j = ( j + st->S[i] + S2[i] ) & 0xff;
79                tmp = st->S[i];
80                st->S[i] = st->S[j];
81                st->S[j] = tmp;
82        }
83       
84        memset( S2, 0, 256 );
85        i = j = 0;
86       
87        for( i = 0; i < cycles; i ++ )
88                arc_getbyte( st );
89       
90        return st;
91}
92
93/*
94   For those who don't know, ArcFour is basically an algorithm that generates
95   a stream of bytes after you give it a key. Just get a byte from it and
96   xor it with your cleartext. To decrypt, just give it the same key again
97   and start xorring.
98   
99   The function above initializes the byte generator, the next function can
100   be used to get bytes from the generator (and shuffle things a bit).
101*/
102
103unsigned char arc_getbyte( struct arc_state *st )
104{
105        unsigned char tmp;
106       
107        /* Unfortunately the st-> stuff doesn't really improve readability here... */
108        st->i ++;
109        st->j += st->S[st->i];
110        tmp = st->S[st->i];
111        st->S[st->i] = st->S[st->j];
112        st->S[st->j] = tmp;
113        tmp = (st->S[st->i] + st->S[st->j]) & 0xff;
114       
115        return st->S[tmp];
116}
117
118/*
119   The following two functions can be used for reliable encryption and
120   decryption. Known plaintext attacks are prevented by adding some (6,
121   by default) random bytes to the password before setting up the state
122   structures. These 6 bytes are also saved in the results, because of
123   course we'll need them in arc_decode().
124   
125   Because the length of the resulting string is unknown to the caller,
126   it should pass a char**. Since the encode/decode functions allocate
127   memory for the string, make sure the char** points at a NULL-pointer
128   (or at least to something you already free()d), or you'll leak
129   memory. And of course, don't forget to free() the result when you
130   don't need it anymore.
131   
132   Both functions return the number of bytes in the result string.
133*/
134
135int arc_encode( char *clear, int clear_len, unsigned char **crypt, char *password )
136{
137        struct arc_state *st;
138        unsigned char *key;
139        int key_len, i;
140       
141        key_len = strlen( password ) + ARC_IV_LEN;
142        if( clear_len <= 0 )
143                clear_len = strlen( clear );
144       
145        /* Prepare buffers and the key + IV */
146        *crypt = g_malloc( clear_len + ARC_IV_LEN );
147        key = g_malloc( key_len );
148        strcpy( (char*) key, password );
149       
150        /* Add the salt. Save it for later (when decrypting) and, of course,
151           add it to the encryption key. */
152        random_bytes( crypt[0], ARC_IV_LEN );
153        memcpy( key + key_len - ARC_IV_LEN, crypt[0], ARC_IV_LEN );
154       
155        /* Generate the initial S[] from the IVed key. */
156        st = arc_keymaker( key, key_len, ARC_CYCLES );
157        g_free( key );
158       
159        for( i = 0; i < clear_len; i ++ )
160                crypt[0][i+ARC_IV_LEN] = clear[i] ^ arc_getbyte( st );
161       
162        g_free( st );
163       
164        return clear_len + ARC_IV_LEN;
165}
166
167int arc_decode( unsigned char *crypt, int crypt_len, char **clear, char *password )
168{
169        struct arc_state *st;
170        unsigned char *key;
171        int key_len, clear_len, i;
172       
173        key_len = strlen( password ) + ARC_IV_LEN;
174        clear_len = crypt_len - ARC_IV_LEN;
175       
176        if( clear_len < 0 )
177        {
178                *clear = g_strdup( "" );
179                return 0;
180        }
181       
182        /* Prepare buffers and the key + IV */
183        *clear = g_malloc( clear_len + 1 );
184        key = g_malloc( key_len );
185        strcpy( (char*) key, password );
186        for( i = 0; i < ARC_IV_LEN; i ++ )
187                key[key_len-ARC_IV_LEN+i] = crypt[i];
188       
189        /* Generate the initial S[] from the IVed key. */
190        st = arc_keymaker( key, key_len, ARC_CYCLES );
191        g_free( key );
192       
193        for( i = 0; i < clear_len; i ++ )
194                clear[0][i] = crypt[i+ARC_IV_LEN] ^ arc_getbyte( st );
195        clear[0][i] = 0; /* Nice to have for plaintexts. */
196       
197        g_free( st );
198       
199        return clear_len;
200}
Note: See TracBrowser for help on using the repository browser.