]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-groestl-test.c
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / test_src / main-groestl-test.c
1 /* main-groestl-test.c */
2 /*
3     This file is part of the AVR-Crypto-Lib.
4     Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
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  * groestl test-suit
21  *
22 */
23
24 #include "main-test-common.h"
25
26 #include "groestl_small.h"
27 #include "groestl_large.h"
28 #include "hfal_groestl_small.h"
29 #include "hfal_groestl_large.h"
30 #include "hfal-nessie.h"
31 #include "hfal-test.h"
32 #include "hfal-performance.h"
33 #include "shavs.h"
34 #include "nessie_hash_test.h"
35 #include "performance_test.h"
36
37 char *algo_name = "Groestl";
38
39
40 const hfdesc_t *const algolist[] PROGMEM = {
41         (hfdesc_t*)&groestl224_desc,
42         (hfdesc_t*)&groestl256_desc,
43         (hfdesc_t*)&groestl384_desc,
44         (hfdesc_t*)&groestl512_desc,
45         NULL
46 };
47
48 /*****************************************************************************
49  *  additional validation-functions                                                                                      *
50  *****************************************************************************/
51
52 void testrun_nessie_groestl(void){
53         hfal_nessie_multiple(algolist);
54 }
55 void groestl224_test(void *msg, uint32_t length_b){
56         hfal_test(&groestl224_desc, msg, length_b);
57 }
58
59 void groestl256_test(void *msg, uint32_t length_b){
60         hfal_test(&groestl256_desc, msg, length_b);
61 }
62
63 void groestl384_test(void *msg, uint32_t length_b){
64         hfal_test(&groestl384_desc, msg, length_b);
65 }
66
67 void groestl512_test(void *msg, uint32_t length_b){
68         hfal_test(&groestl512_desc, msg, length_b);
69 }
70
71
72 void testrun_stdtest_groestl(void){
73         uint8_t msg1[144];
74         memset(msg1, 0, 144);
75         groestl224_test("", 8);
76         groestl224_test(msg1, 576);
77         groestl256_test("", 8);
78         groestl256_test(msg1, 576);
79         groestl384_test("", 8);
80         groestl384_test(msg1, 1152);
81         groestl512_test("", 8);
82         groestl512_test(msg1, 1152);
83 }
84
85 void testshort(void){
86         groestl256_test("abc", 24);
87 }
88
89 void testlshort(void){
90         groestl512_test("abc", 24);
91 }
92
93 void test505(void){
94         uint8_t data[] = {
95                 0x84, 0x73, 0xDC, 0x53, 0x82, 0xDE, 0x32, 0x95,
96                 0x7E, 0x3A, 0x15, 0xCA, 0x3D, 0x79, 0x1C, 0x67,
97                 0xD2, 0x0C, 0xF9, 0xEF, 0xBE, 0x3E, 0x46, 0x40,
98                 0x7D, 0xCA, 0x5D, 0x02, 0x63, 0x5A, 0xC8, 0x6D,
99                 0x2E, 0x0B, 0x22, 0xC7, 0x6D, 0x7D, 0x08, 0x0D,
100                 0x36, 0x2E, 0x82, 0x75, 0x89, 0x14, 0xCC, 0x0A,
101                 0xE2, 0xB8, 0x9B, 0xD3, 0x5F, 0x71, 0xD8, 0x44,
102                 0x92, 0xD9, 0x43, 0x07, 0x42, 0x78, 0x9C, 0x80 };
103         groestl224_test(data, 505);
104 }
105
106
107 void performance_groestl(void){
108         hfal_performance_multiple(algolist);
109 }
110
111 /*****************************************************************************
112  *  main                                                                                                                                         *
113  *****************************************************************************/
114
115
116 const char nessie_str[]       PROGMEM = "nessie";
117 const char test_str[]         PROGMEM = "test";
118 const char testshort_str[]    PROGMEM = "short";
119 const char testlshort_str[]   PROGMEM = "lshort";
120 const char test505_str[]      PROGMEM = "test505";
121 const char performance_str[]  PROGMEM = "performance";
122 const char echo_str[]         PROGMEM = "echo";
123 const char shavs_list_str[]   PROGMEM = "shavs_list";
124 const char shavs_set_str[]    PROGMEM = "shavs_set";
125 const char shavs_test1_str[]  PROGMEM = "shavs_test1";
126
127 const cmdlist_entry_t cmdlist[] PROGMEM = {
128         { nessie_str,          NULL, testrun_nessie_groestl},
129         { test_str,            NULL, testrun_stdtest_groestl},
130         { testshort_str,       NULL, testshort},
131         { testlshort_str,      NULL, testlshort},
132         { test505_str,         NULL, test505},
133         { performance_str,     NULL, performance_groestl},
134         { shavs_list_str,      NULL, shavs_listalgos},
135         { shavs_set_str,   (void*)1, (void_fpt)shavs_setalgo},
136         { shavs_test1_str,     NULL, shavs_test1},
137         { echo_str,        (void*)1, (void_fpt)echo_ctrl},
138         { NULL,                NULL, NULL}
139 };
140
141 int main (void){
142     main_setup();
143
144     shavs_algolist=(hfdesc_t**)algolist;
145         shavs_algo=(hfdesc_t*)&groestl256_desc;
146         for(;;){
147             welcome_msg(algo_name);
148             cmd_interface(cmdlist);
149         }
150 }