]> git.cryptolib.org Git - arm-crypto-lib.git/blob - test_src/main-md5-test.c
switching to dedicated endian switching function
[arm-crypto-lib.git] / test_src / main-md5-test.c
1 /* main-md5-test.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  * md5 test suit
21  * 
22 */
23 #include "main-test-common.h"
24
25 #include "md5.h"
26 #include "nessie_hash_test.h"
27 #include "performance_test.h"
28 #include "hfal_md5.h"
29 #include "hfal-performance.h"
30
31 char* algo_name = "MD5";
32
33 const hfdesc_t* algolist[] = {
34         (hfdesc_t*)&md5_desc,
35         NULL
36 };
37
38 /*****************************************************************************
39  *  additional validation-functions                                                                                      *
40  *****************************************************************************/
41
42 void md5_ctx2hash_dummy(void* buffer, void* ctx){
43         memcpy(buffer, ctx, 16);
44 }
45
46
47 void testrun_nessie_md5(void){
48         nessie_hash_ctx.hashsize_b  = 128;
49         nessie_hash_ctx.blocksize_B = 512/8;
50         nessie_hash_ctx.ctx_size_B  = sizeof(md5_ctx_t);
51         nessie_hash_ctx.name = algo_name;
52         nessie_hash_ctx.hash_init = (nessie_hash_init_fpt)md5_init;
53         nessie_hash_ctx.hash_next = (nessie_hash_next_fpt)md5_nextBlock;
54         nessie_hash_ctx.hash_last = (nessie_hash_last_fpt)md5_lastBlock;
55         nessie_hash_ctx.hash_conv = (nessie_hash_conv_fpt)md5_ctx2hash_dummy;
56         
57         nessie_hash_run();
58 }
59
60 /*****************************************************************************
61  *  self tests                                                                                                                           *
62  *****************************************************************************/
63
64 /*
65  * MD5 test suite:
66  * MD5 ("") = d41d8cd98f00b204e9800998ecf8427e
67  * MD5 ("a") = 0cc175b9c0f1b6a831c399e269772661
68  * MD5 ("abc") = 900150983cd24fb0d6963f7d28e17f72
69  * MD5 ("message digest") = f96b697d7cb7938d525a2f31aaf161d0
70  * MD5 ("abcdefghijklmnopqrstuvwxyz") = c3fcd3d76192e4007dfb496cca67e13b
71  * MD5 ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789") =
72  * d174ab98d277d9f5a5611c2c9f419d9f
73  * MD5 ("123456789012345678901234567890123456789012345678901234567890123456
74  * 78901234567890") = 57edf4a22be3c955ac49da2e2107b67a
75  */
76
77 void testrun_md5(void){
78         md5_hash_t hash;
79         char* testv[]={
80                 "", 
81                 "a", 
82                 "abc", 
83                 "message digest", 
84                 "abcdefghijklmnopqrstuvwxyz", 
85                 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 
86                 "12345678901234567890123456789012345678901234567890123456789012345678901234567890"};
87         uint16_t i;
88         
89         cli_putstr("\r\n=== MD5 test suit ===");
90         for(i=0; i<7; ++i){
91                 cli_putstr("\r\n MD5 (\"");
92                 cli_putstr(testv[i]);
93                 cli_putstr("\");= \r\n\t");
94                 md5(&hash, testv[i], strlen(testv[i])*8);
95                 cli_hexdump(hash, 16);
96         }
97         uint8_t buffer[512/8];
98         char str[5];
99         for(i=505; i<512; ++i){
100                 memset(buffer, 0, 512/8);
101                 cli_putstr("\r\nMD5(");
102                 utoa(i, str, 10);
103                 cli_putstr(str);
104                 cli_putstr(" zero bits) = ");
105                 md5(&hash, buffer, i);
106                 cli_hexdump(hash, 16);
107         }
108 }
109
110
111 void testrun_performance_md5(void){
112         hfal_performance_multiple(algolist);
113 }
114
115
116 /*****************************************************************************
117  * main                                                                                                                                  *
118  *****************************************************************************/
119
120 const char nessie_str[]      = "nessie";
121 const char test_str[]        = "test";
122 const char performance_str[] = "performance";
123 const char echo_str[]        = "echo";
124
125 cmdlist_entry_t cmdlist[] = {
126         { nessie_str,      NULL, testrun_nessie_md5},
127         { test_str,        NULL, testrun_md5},
128         { performance_str, NULL, testrun_performance_md5},
129         { echo_str,    (void*)1, (void_fpt)echo_ctrl},
130         { NULL,            NULL, NULL}
131 };
132
133 int main (void){
134         main_setup();
135         
136         for(;;){
137                 welcome_msg(algo_name);
138                 cmd_interface(cmdlist);
139         }
140 }