]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-jh-test.c
+small jh
[avr-crypto-lib.git] / test_src / main-jh-test.c
1 /* main-jh-test.c */
2 /*
3     This file is part of the AVR-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  * JH test-suit
21  *
22 */
23
24 #include "config.h"
25
26 #include "uart_i.h"
27 #include "debug.h"
28
29 #include "jh_simple.h"
30 #include "hfal_jh.h"
31 #include "hfal-nessie.h"
32 #include "hfal-test.h"
33 #include "hfal-performance.h"
34 #include "shavs.h"
35 #include "cli.h"
36 #include "nessie_hash_test.h"
37 #include "performance_test.h"
38
39 #include <stdint.h>
40 #include <string.h>
41 #include <stdlib.h>
42
43 char* algo_name = "JH";
44
45
46 const hfdesc_t* algolist[] PROGMEM = {
47         (hfdesc_t*)&jh224_desc,
48         (hfdesc_t*)&jh256_desc,
49         (hfdesc_t*)&jh384_desc,
50         (hfdesc_t*)&jh512_desc,
51         NULL
52 };
53
54 /*****************************************************************************
55  *  additional validation-functions                                                                                      *
56  *****************************************************************************/
57
58 void performance_jh(void){
59         hfal_performance_multiple(algolist);
60 }
61
62 void testrun_nessie_jh(void){
63         hfal_nessie_multiple(algolist);
64 }
65
66 void test256Null(void){
67         jh_ctx_t ctx;
68         uint8_t hash[32];
69         jh256_init(&ctx);
70         jh_lastBlock(&ctx, NULL, 0);
71         jh256_ctx2hash(hash, &ctx);
72         cli_putstr_P(PSTR("\r\nresult:\r\n"));
73         cli_hexdump_block(hash, 32, 4, 8);
74 }
75
76 /*****************************************************************************
77  *  main                                                                                                                                         *
78  *****************************************************************************/
79
80
81 const char nessie_str[]       PROGMEM = "nessie";
82 const char test_str[]         PROGMEM = "test";
83 const char test256_str[]      PROGMEM = "test256";
84 const char performance_str[]  PROGMEM = "performance";
85 const char singleround_str[]  PROGMEM = "singleround";
86 const char echo_str[]         PROGMEM = "echo";
87 const char shavs_list_str[]   PROGMEM = "shavs_list";
88 const char shavs_set_str[]    PROGMEM = "shavs_set";
89 const char shavs_test1_str[]  PROGMEM = "shavs_test1";
90
91 cmdlist_entry_t cmdlist[] PROGMEM = {
92         { nessie_str,          NULL, testrun_nessie_jh},
93         { performance_str,     NULL, performance_jh},
94         { test256_str,         NULL, test256Null},
95 //      { singleround_str,     NULL, singleround_jh},
96         { shavs_list_str,      NULL, shavs_listalgos},
97         { shavs_set_str,   (void*)1, (void_fpt)shavs_setalgo},
98         { shavs_test1_str,     NULL, shavs_test1},
99         { echo_str,        (void*)1, (void_fpt)echo_ctrl},
100         { NULL,                NULL, NULL}
101 };
102
103 int main (void){
104         DEBUG_INIT();
105
106         cli_rx = (cli_rx_fpt)uart0_getc;
107         cli_tx = (cli_tx_fpt)uart0_putc;
108         shavs_algolist=(hfdesc_t**)algolist;
109         shavs_algo=(hfdesc_t*)&jh256_desc;
110         for(;;){
111                 cli_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
112                 cli_putstr(algo_name);
113                 cli_putstr_P(PSTR("; "));
114                 cli_putstr(__DATE__);
115                 cli_putstr_P(PSTR(" "));
116                 cli_putstr(__TIME__);
117                 cli_putstr_P(PSTR(")\r\nloaded and running\r\n"));
118
119                 cmd_interface(cmdlist);
120         }
121 }