]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-twister-test.c
clean up
[avr-crypto-lib.git] / test_src / main-twister-test.c
1 /* main-twister-test.c */
2 /*
3     This file is part of the AVR-Crypto-Lib.
4     Copyright (C) 2008, 2009  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  * twister test suit
21  * 
22 */
23
24 #include "config.h"
25
26 #include "uart_i.h"
27 #include "debug.h"
28
29 #include "twister-small.h"
30 #include "twister-large.h"
31 #include "nessie_hash_test.h"
32 #include "performance_test.h"
33 #include "hfal/hfal_twister224.h"
34 #include "hfal/hfal_twister256.h"
35 #include "hfal/hfal_twister384.h"
36 #include "hfal/hfal_twister512.h"
37 #include "hfal/hfal-nessie.h"
38 #include "hfal/hfal-performance.h"
39 #include "hfal/hfal-test.h"
40 #include "shavs.h"
41
42
43 #include <stdint.h>
44 #include <string.h>
45 #include <stdlib.h>
46 #include "cli.h"
47
48 char* algo_name = "TWISTER";
49
50 const hfdesc_t* algolist[] PROGMEM = {
51         (hfdesc_t*)&twister224_desc,
52         (hfdesc_t*)&twister256_desc,
53         (hfdesc_t*)&twister384_desc,
54         (hfdesc_t*)&twister512_desc,
55         NULL
56 };
57
58 /*****************************************************************************
59  *  additional validation-functions                                                                                      *
60  *****************************************************************************/
61
62 void testrun_nessie_twister(void){
63         hfal_nessie_multiple(algolist);
64 }
65
66 /*****************************************************************************
67  * selftests
68  *
69  *****************************************************************************/
70
71 void test_twister224( void* msg, uint32_t length_b){
72         hfal_test(&twister224_desc, msg, length_b);
73 }
74
75 void test_twister256( void* msg, uint32_t length_b){
76         hfal_test(&twister256_desc, msg, length_b);
77 }
78
79 void test_twister384( void* msg, uint32_t length_b){
80         hfal_test(&twister384_desc, msg, length_b);
81 }
82
83 void test_twister512( void* msg, uint32_t length_b){
84         hfal_test(&twister512_desc, msg, length_b);
85 }
86
87 void testrun_twister(void){
88         const hfdesc_t* desc[4] = { &twister224_desc, &twister256_desc,
89                                     &twister384_desc, &twister512_desc };
90         uint8_t i,j; 
91         char* testv[]={
92                 "", 
93                 "a", 
94                 "abc", 
95                 "message digest", 
96                 "abcdefghijklmnopqrstuvwxyz", 
97                 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 
98                 "12345678901234567890123456789012345678901234567890123456789012345678901234567890"};
99         uint8_t stestv[]= {0x00, 0x00, 0xC0, 0xC0, 0x80, 0x48, 0x50};
100         uint8_t stestl[]= {   0,    1,    2,    3,    4,    5,    6};   
101         
102         for(i=0; i<4; ++i){
103                 for(j=0; j<7; ++j){
104                         hfal_test(desc[i], testv[j], strlen(testv[j])*8);
105                 }
106                 hfal_test(desc[i], stestv, 7*8);
107                 hfal_test(desc[i], stestl, 7*8);
108                 
109         }
110 }
111
112
113 void testrun_performance_twister(void){
114         hfal_performance_multiple(algolist);
115 }
116
117
118 /*****************************************************************************
119  * main                                                                                                                                  *
120  *****************************************************************************/
121
122 const char nessie_str[]      PROGMEM = "nessie";
123 const char test_str[]        PROGMEM = "test";
124 const char performance_str[] PROGMEM = "performance";
125 const char echo_str[]        PROGMEM = "echo";
126 const char shavs_list_str[]  PROGMEM = "shavs_list";
127 const char shavs_set_str[]   PROGMEM = "shavs_set";
128 const char shavs_test1_str[] PROGMEM = "shavs_test1";
129
130 cmdlist_entry_t cmdlist[] PROGMEM = {
131         { nessie_str,          NULL, testrun_nessie_twister},
132         { test_str,            NULL, testrun_twister},
133         { performance_str,     NULL, testrun_performance_twister},
134         { echo_str,        (void*)1, (void_fpt)echo_ctrl},
135         { shavs_list_str,      NULL, shavs_listalgos},
136         { shavs_set_str,   (void*)1, (void_fpt)shavs_setalgo},
137         { shavs_test1_str,     NULL, shavs_test1},
138         { NULL,                NULL, NULL}
139 };
140
141 int main (void){
142         DEBUG_INIT();
143         
144         cli_rx = (cli_rx_fpt)uart0_getc;
145         cli_tx = (cli_tx_fpt)uart0_putc;                
146         shavs_algolist=(hfdesc_t**)algolist;
147         shavs_algo=(hfdesc_t*)&twister256_desc;
148         for(;;){
149                 cli_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
150                 cli_putstr(algo_name);
151                 cli_putstr_P(PSTR(")\r\nloaded and running\r\n"));
152                 cmd_interface(cmdlist);
153         }
154 }