338005c40c05937ad91716d771979f37d9285d46
[bertos.git] / algos / md2.c
1 /**
2  * \file
3  * <!--
4  * Copyright 2007 Develer S.r.l. (http://www.develer.com/)
5  * This file is part of DevLib - See README.devlib for information.
6  * -->
7  *
8  * \brief MD2 Message-Digest algorithm.
9  *
10  * \version $Id$
11  * \author Daniele Basile <asterix@develer.com>
12  */
13
14 /*#*
15  *#* $Log$
16  *#* Revision 1.10  2007/02/02 15:37:45  asterix
17  *#* Change md2_end prototype. Remove a unneeded memcpy in md2_end. Add comments.
18  *#*
19  *#* Revision 1.9  2007/02/02 13:10:01  asterix
20  *#* Fix some bugs in md2_pad and md2_update fuction.
21  *#*
22  *#* Revision 1.8  2007/02/01 14:45:56  asterix
23  *#* Rewrite md2_update function and fix some bug.
24  *#*
25  *#* Revision 1.7  2007/01/31 18:04:15  asterix
26  *#* Write md2_end function
27  *#*
28  *#* Revision 1.4  2007/01/31 13:51:57  asterix
29  *#* Write md2_compute function.
30  *#*
31  *#* Revision 1.2  2007/01/30 17:31:44  asterix
32  *#* Add function prototypes.
33  *#*
34  *#* Revision 1.1  2007/01/30 15:53:26  batt
35  *#* Add first md2 skel.
36  *#*
37  *#*/
38
39 #include "md2.h"
40
41 #include <string.h>           //memset(), memcpy();
42 #include <cfg/compiler.h>
43 #include <cfg/debug.h>        //ASSERT()
44 #include <cfg/macros.h>       //MIN()
45
46
47 /*
48  * Official array of 256 byte pemutation contructed from digits of pi, defined
49  * in the RFC 1319.
50  */
51 static uint8_t md2_perm[256] = {
52   41, 46, 67, 201, 162, 216, 124, 1, 61, 54, 84, 161, 236, 240, 6,
53   19, 98, 167, 5, 243, 192, 199, 115, 140, 152, 147, 43, 217, 188,
54   76, 130, 202, 30, 155, 87, 60, 253, 212, 224, 22, 103, 66, 111, 24,
55   138, 23, 229, 18, 190, 78, 196, 214, 218, 158, 222, 73, 160, 251,
56   245, 142, 187, 47, 238, 122, 169, 104, 121, 145, 21, 178, 7, 63,
57   148, 194, 16, 137, 11, 34, 95, 33, 128, 127, 93, 154, 90, 144, 50,
58   39, 53, 62, 204, 231, 191, 247, 151, 3, 255, 25, 48, 179, 72, 165,
59   181, 209, 215, 94, 146, 42, 172, 86, 170, 198, 79, 184, 56, 210,
60   150, 164, 125, 182, 118, 252, 107, 226, 156, 116, 4, 241, 69, 157,
61   112, 89, 100, 113, 135, 32, 134, 91, 207, 101, 230, 45, 168, 2, 27,
62   96, 37, 173, 174, 176, 185, 246, 28, 70, 97, 105, 52, 64, 126, 15,
63   85, 71, 163, 35, 221, 81, 175, 58, 195, 92, 249, 206, 186, 197,
64   234, 38, 44, 83, 13, 110, 133, 40, 132, 9, 211, 223, 205, 244, 65,
65   129, 77, 82, 106, 220, 55, 200, 108, 193, 171, 250, 36, 225, 123,
66   8, 12, 189, 177, 74, 120, 136, 149, 139, 227, 99, 232, 109, 233,
67   203, 213, 254, 59, 0, 29, 57, 242, 239, 183, 14, 102, 88, 208, 228,
68   166, 119, 114, 248, 235, 117, 75, 10, 49, 68, 80, 180, 143, 237,
69   31, 26, 219, 153, 141, 51, 159, 17, 131, 20
70 };
71
72 /**
73  * Pad function. Put len_pad unsigned char in
74  * input block.
75  */
76 static void md2_pad(void *_block, size_t len_pad)
77 {
78         uint8_t *block;
79
80         block = (uint8_t *)_block;
81
82         ASSERT(len_pad <= CONFIG_MD2_BLOCK_LEN);
83
84         /*
85          * Fill input block with len_pad char.
86          */
87         memset(block, len_pad, len_pad);
88
89 }
90
91 static void md2_compute(void *_state, void *_checksum, void *_block)
92 {
93         int i = 0;
94         uint16_t t = 0;
95         uint8_t compute_array[COMPUTE_ARRAY_LEN];
96         uint8_t *state;
97         uint8_t *checksum;
98         uint8_t *block;
99
100         state = (uint8_t *)_state;
101         checksum  = (uint8_t *)_checksum;
102         block = (uint8_t *)_block;
103
104         /*
105          * Copy state and checksum context in compute array.
106          */
107         memcpy(compute_array, state, CONFIG_MD2_BLOCK_LEN);
108         memcpy(compute_array + CONFIG_MD2_BLOCK_LEN, block, CONFIG_MD2_BLOCK_LEN);
109
110         /*
111          * Fill compute array with state XOR block
112          */
113         for(i = 0; i < CONFIG_MD2_BLOCK_LEN; i++)
114                 compute_array[i + (CONFIG_MD2_BLOCK_LEN * 2)] = state[i] ^ block[i];
115
116         /*
117          * Encryt block.
118          */
119         for(i = 0; i < NUM_COMPUTE_ROUNDS; i++)
120         {
121                 for(int j = 0; j < COMPUTE_ARRAY_LEN; j++)
122                 {
123                         compute_array[j] ^= md2_perm [t];
124                         t = compute_array[j];
125                 }
126
127                 t = (t + i) & 0xff; //modulo 256.
128         }
129         /*
130          * Update checksum.
131          */
132         t = checksum[CONFIG_MD2_BLOCK_LEN - 1];
133
134         for(i = 0; i < CONFIG_MD2_BLOCK_LEN; i++)
135         {
136                 checksum[i]  ^= md2_perm [block[i] ^ t];
137                 t = checksum[i];
138         }
139
140         /*
141          * Update state and clean compute array.
142          */
143         memcpy(state, compute_array, CONFIG_MD2_BLOCK_LEN);
144         memset(compute_array, 0, sizeof(compute_array));
145 }
146
147 /**
148  * Algorithm initialization.
149  *
150  * \param empty context.
151  */
152 void md2_init(Md2Context *context)
153 {
154
155         memset(context, 0, sizeof(Md2Context));
156
157 }
158
159 /**
160  * Update block.
161  */
162 void md2_update(Md2Context *context, void *_block_in, size_t block_len)
163 {
164
165         uint8_t *block_in;
166
167         /*
168          * Choose a number of block that fill input context buffer.
169          */
170         size_t missing_len = MIN(block_len, CONFIG_MD2_BLOCK_LEN - context->counter);
171
172         block_in = (uint8_t *)_block_in;
173
174         while(block_len > 0)
175         {
176                 /*
177                  * Copy in the buffer input block.
178                  */
179                 memcpy(&context->buffer[context->counter], block_in, missing_len);
180
181                 /*
182                  * Update a context counter, input block length and remaning 
183                  * context buffer block lenght.
184                  */
185                 context->counter += missing_len;
186                 block_len -= missing_len;
187                 block_in += missing_len;
188
189                 /*
190                  * If buffer is full, compute it.
191                  */
192                 if (context->counter >= CONFIG_MD2_BLOCK_LEN)
193                 {
194                         md2_compute(context->state, context->checksum, context->buffer);
195                         context->counter = 0;
196                 }
197         }
198
199
200 }
201 /**
202  * Ends an MD2 message digest operation.
203  * This fuction take an context and return a pointer
204  * to context state.
205  *
206  * \param context in input.
207  * \return a pointer to context state (message digest).
208  */
209 uint8_t  *md2_end(Md2Context *context)
210 {
211
212         uint8_t buf[CONFIG_MD2_BLOCK_LEN];
213
214         /*
215          * Fill remaning empty context buffer.
216          */
217         md2_pad(buf, CONFIG_MD2_BLOCK_LEN - context->counter);
218
219         /*
220          * Update context buffer and compute it.
221          */
222         md2_update(context, buf, CONFIG_MD2_BLOCK_LEN - context->counter);
223
224         /*
225          * Add context checksum to message input.
226          */
227         md2_update(context, context->checksum, CONFIG_MD2_BLOCK_LEN);
228
229
230         return context->state; //return a pointer to message digest.
231 }