]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-md5-test.c
renaming to AVR-Crypto-Lib
[avr-crypto-lib.git] / test_src / main-md5-test.c
1 /* main-md5-test.c */
2 /*
3     This file is part of the This file is part of the AVR-Crypto-Lib.
4     Copyright (C) 2008  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  * md5 test suit
21  * 
22 */
23
24 #include "config.h"
25 #include "serial-tools.h"
26 #include "uart.h"
27 #include "debug.h"
28
29 #include "md5.h"
30 #include "nessie_hash_test.h"
31 #include "performance_test.h"
32
33 #include <stdint.h>
34 #include <string.h>
35 #include <stdlib.h>
36 #include "cli.h"
37
38 char* algo_name = "MD5";
39
40 /*****************************************************************************
41  *  additional validation-functions                                                                                      *
42  *****************************************************************************/
43 void md5_next_dummy(void* buffer, void* ctx){
44         md5_nextBlock(ctx, buffer);
45 }
46
47 void md5_last_dummy(void* buffer, uint16_t size_b, void* ctx){
48         md5_lastBlock(ctx, buffer, size_b);
49 }
50
51 void md5_ctx2hash_dummy(void* buffer, void* ctx){
52         memcpy(buffer, ctx, 16);
53 }
54
55
56 void testrun_nessie_md5(void){
57         nessie_hash_ctx.hashsize_b  = 128;
58         nessie_hash_ctx.blocksize_B = 512/8;
59         nessie_hash_ctx.ctx_size_B  = sizeof(md5_ctx_t);
60         nessie_hash_ctx.name = algo_name;
61         nessie_hash_ctx.hash_init = (nessie_hash_init_fpt)md5_init;
62         nessie_hash_ctx.hash_next = (nessie_hash_next_fpt)md5_next_dummy;
63         nessie_hash_ctx.hash_last = (nessie_hash_last_fpt)md5_last_dummy;
64         nessie_hash_ctx.hash_conv = (nessie_hash_conv_fpt)md5_ctx2hash_dummy;
65         
66         nessie_hash_run();
67 }
68
69 /*****************************************************************************
70  *  self tests                                                                                                                           *
71  *****************************************************************************/
72
73 /*
74  * MD5 test suite:
75  * MD5 ("") = d41d8cd98f00b204e9800998ecf8427e
76  * MD5 ("a") = 0cc175b9c0f1b6a831c399e269772661
77  * MD5 ("abc") = 900150983cd24fb0d6963f7d28e17f72
78  * MD5 ("message digest") = f96b697d7cb7938d525a2f31aaf161d0
79  * MD5 ("abcdefghijklmnopqrstuvwxyz") = c3fcd3d76192e4007dfb496cca67e13b
80  * MD5 ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789") =
81  * d174ab98d277d9f5a5611c2c9f419d9f
82  * MD5 ("123456789012345678901234567890123456789012345678901234567890123456
83  * 78901234567890") = 57edf4a22be3c955ac49da2e2107b67a
84  */
85
86 void testrun_md5(void){
87         md5_hash_t hash;
88         char* testv[]={
89                 "", 
90                 "a", 
91                 "abc", 
92                 "message digest", 
93                 "abcdefghijklmnopqrstuvwxyz", 
94                 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 
95                 "12345678901234567890123456789012345678901234567890123456789012345678901234567890"};
96         uint8_t i;
97         
98         uart_putstr("\r\n=== MD5 test suit ===");
99         for(i=0; i<7; ++i){
100                 uart_putstr("\r\n MD5 (\"");
101                 uart_putstr(testv[i]);
102                 uart_putstr("\") = \r\n\t");
103                 md5(&hash, testv[i], strlen(testv[i])*8);
104                 uart_hexdump(hash, 16);
105         }
106 }
107
108
109 void testrun_performance_md5(void){
110         uint64_t t;
111         char str[16];
112         uint8_t data[32];
113         md5_ctx_t ctx;
114         
115         calibrateTimer();
116         print_overhead();
117         
118         memset(data, 0, 32);
119         
120         startTimer(1);
121         md5_init(&ctx);
122         t = stopTimer();
123         uart_putstr_P(PSTR("\r\n\tctx-gen time: "));
124         ultoa((unsigned long)t, str, 10);
125         uart_putstr(str);
126         
127         
128         startTimer(1);
129         md5_nextBlock(&ctx, data);
130         t = stopTimer();
131         uart_putstr_P(PSTR("\r\n\tone-block time: "));
132         ultoa((unsigned long)t, str, 10);
133         uart_putstr(str);
134         
135         
136         startTimer(1);
137         md5_lastBlock(&ctx, data, 0);
138         t = stopTimer();
139         uart_putstr_P(PSTR("\r\n\tlast block time: "));
140         ultoa((unsigned long)t, str, 10);
141         uart_putstr(str);
142         
143         uart_putstr_P(PSTR("\r\n"));
144 }
145
146
147 /*****************************************************************************
148  * main                                                                                                                                  *
149  *****************************************************************************/
150
151 int main (void){
152         char str[20];
153
154         
155         DEBUG_INIT();
156         uart_putstr("\r\n");
157
158         uart_putstr("\r\n\r\nCrypto-VS (MD5)\r\nloaded and running\r\n");
159         PGM_P    u   = PSTR("nessie\0test\0performance\0");
160         void_fpt v[] = {testrun_nessie_md5, testrun_md5, testrun_performance_md5};
161
162         while(1){ 
163                 if (!getnextwordn(str,20)){DEBUG_S("DBG: W1\r\n"); goto error;}
164                 if(execcommand_d0_P(str, u, v)<0){
165                         uart_putstr_P(PSTR("\r\nunknown command\r\n"));
166                 }
167                 continue;
168         error:
169                 uart_putstr("ERROR\r\n");
170         }
171 }
172