]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-echo-test.c
now with Echo (hashfunction), tests are running ...
[avr-crypto-lib.git] / test_src / main-echo-test.c
1 /* main-echo-test.c */
2 /*
3     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  * CubeHash test-suit
21  *
22 */
23
24 #include "config.h"
25 #include "uart_i.h"
26 #include "debug.h"
27
28 #include "echo.h"
29 #include "cli.h"
30 #include "hfal_echo.h"
31 #include "shavs.h"
32 #include "nessie_hash_test.h"
33 #include "performance_test.h"
34 #include "hfal-nessie.h"
35 #include "hfal-performance.h"
36 #include "hfal-test.h"
37
38 #include <stdint.h>
39 #include <string.h>
40 #include <stdlib.h>
41
42 char* algo_name = "CubeHash";
43
44
45 const hfdesc_t* algolist[] PROGMEM = {
46         (hfdesc_t*)&echo224_desc,
47         (hfdesc_t*)&echo256_desc,
48         NULL
49 };
50
51 /*****************************************************************************
52  *  additional validation-functions                                                                                      *
53  *****************************************************************************/
54 /* IntermediateKAT1_256.txt */
55 uint8_t intermediate_data[] PROGMEM = {
56         0xDB, 0x11, 0xF6, 0x09, 0xBA, 0xBA, 0x7B, 0x0C,
57         0xA6, 0x34, 0x92, 0x6B, 0x1D, 0xD5, 0x39, 0xC8,
58         0xCB, 0xAD, 0xA2, 0x49, 0x67, 0xD7, 0xAD, 0xD4,
59         0xD9, 0x87, 0x6F, 0x77, 0xC2, 0xD8, 0x0C, 0x0F,
60         0x4D, 0xCE, 0xFB, 0xD7, 0x12, 0x15, 0x48, 0x37,
61         0x35, 0x82, 0x70, 0x5C, 0xCA, 0x24, 0x95, 0xBD,
62         0x2A, 0x43, 0x71, 0x6F, 0xE6, 0x4E, 0xD2, 0x6D,
63         0x05, 0x9C, 0xFB, 0x56, 0x6B, 0x33, 0x64, 0xBD,
64         0x49, 0xEE, 0x07, 0x17, 0xBD, 0xD9, 0x81, 0x0D,
65         0xD1, 0x4D, 0x8F, 0xAD, 0x80, 0xDB, 0xBD, 0xC4,
66         0xCA, 0xFB, 0x37, 0xCC, 0x60, 0xFB, 0x0F, 0xE2,
67         0xA8, 0x0F, 0xB4, 0x54, 0x1B, 0x8C, 0xA9, 0xD5,
68         0x9D, 0xCE, 0x45, 0x77, 0x38, 0xA9, 0xD3, 0xD8,
69         0xF6, 0x41, 0xAF, 0x8C, 0x3F, 0xD6, 0xDA, 0x16,
70         0x2D, 0xC1, 0x6F, 0xC0, 0x1A, 0xAC, 0x52, 0x7A,
71         0x4A, 0x02, 0x55, 0xB4, 0xD2, 0x31, 0xC0, 0xBE,
72         0x50, 0xF4, 0x4F, 0x0D, 0xB0, 0xB7, 0x13, 0xAF,
73         0x03, 0xD9, 0x68, 0xFE, 0x7F, 0x0F, 0x61, 0xED,
74         0x08, 0x24, 0xC5, 0x5C, 0x4B, 0x52, 0x65, 0x54,
75         0x8F, 0xEB, 0xD6, 0xAA, 0xD5, 0xC5, 0xEE, 0xDF,
76         0x63, 0xEF, 0xE7, 0x93, 0x48, 0x9C, 0x39, 0xB8,
77         0xFD, 0x29, 0xD1, 0x04, 0xCE
78         };
79
80 void echo256_interm(void){
81         echo_small_ctx_t ctx;
82         uint8_t data[1384/8];
83         uint8_t hash[32];
84         echo256_init(&ctx);
85         memcpy_P(data, intermediate_data, 173);
86         cli_putstr_P(PSTR("\r\ninit done "));
87         echo_small_lastBlock(&ctx, data, 1384);
88         cli_putstr_P(PSTR("\r\nlastblock done "));
89         echo256_ctx2hash(hash, &ctx);
90         cli_putstr_P(PSTR("\r\nhash = "));
91         cli_hexdump(hash, 32);
92 }
93
94 void echo256_test0(void){
95         echo_small_ctx_t ctx;
96         uint8_t hash[32];
97         echo256_init(&ctx);
98         cli_putstr_P(PSTR("\r\ninit done "));
99         echo_small_lastBlock(&ctx, NULL, 0);
100         cli_putstr_P(PSTR("\r\nlastblock done "));
101         echo256_ctx2hash(hash, &ctx);
102         cli_putstr_P(PSTR("\r\nhash = "));
103         cli_hexdump(hash, 32);
104 }
105
106 void performance_echo(void){
107         hfal_performance_multiple(algolist);
108 }
109
110 void testrun_nessie_echo(void){
111         hfal_nessie_multiple(algolist);
112 }
113 /*****************************************************************************
114  *  main                                                                                                                                         *
115  *****************************************************************************/
116
117 const char nessie_str[]      PROGMEM = "nessie";
118 const char test256_str[]     PROGMEM = "test256";
119 const char interm_str[]      PROGMEM = "interm";
120 const char performance_str[] PROGMEM = "performance";
121 const char echo_str[]        PROGMEM = "echo";
122 const char shavs_list_str[]  PROGMEM = "shavs_list";
123 const char shavs_set_str[]   PROGMEM = "shavs_set";
124 const char shavs_test1_str[] PROGMEM = "shavs_test1";
125 const char shavs_test3_str[] PROGMEM = "shavs_test3";
126
127 cmdlist_entry_t cmdlist[] PROGMEM = {
128         { nessie_str,                NULL, testrun_nessie_echo         },
129         { interm_str,                NULL, echo256_interm              },
130         { test256_str,               NULL, echo256_test0               },
131         { performance_str,           NULL, performance_echo            },
132         { shavs_list_str,            NULL, shavs_listalgos             },
133         { shavs_set_str,         (void*)1, (void_fpt)shavs_setalgo     },
134         { shavs_test1_str,           NULL, shavs_test1                 },
135         { shavs_test3_str,           NULL, shavs_test3                 },
136         { echo_str,              (void*)1, (void_fpt)echo_ctrl         },
137         { NULL,                      NULL, NULL                        }
138 };
139
140 int main (void){
141         DEBUG_INIT();
142
143         cli_rx = (cli_rx_fpt)uart0_getc;
144         cli_tx = (cli_tx_fpt)uart0_putc;
145         shavs_algolist=(hfdesc_t**)algolist;
146         shavs_algo=(hfdesc_t*)&echo256_desc;
147         for(;;){
148                 cli_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
149                 cli_putstr(algo_name);
150                 cli_putstr_P(PSTR("; "));
151                 cli_putstr(__DATE__);
152                 cli_putstr_P(PSTR(" "));
153                 cli_putstr(__TIME__);
154                 cli_putstr_P(PSTR(")\r\nloaded and running\r\n"));
155
156                 cmd_interface(cmdlist);
157         }
158 }