]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-des-test.c
63d5f00c892fc8ec34d1862d710b6f70c63a28cc
[avr-crypto-lib.git] / test_src / main-des-test.c
1 /* main-des-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  * des test-suit
21  * 
22 */
23
24 #include "config.h"
25
26 #include "uart_i.h"
27 #include "debug.h"
28
29 #include "des.h"
30 #include "nessie_bc_test.h"
31 #include "cli.h"
32 #include "performance_test.h"
33 #include "bcal-performance.h"
34 #include "bcal-nessie.h"
35 #include "bcal_des.h"
36 #include "bcal_tdes.h"
37 #include "bcal_tdes2.h"
38
39 #include <stdint.h>
40 #include <string.h>
41 #include <stdlib.h>
42
43 char* algo_name = "DES";
44
45 const bcdesc_t* algolist[] PROGMEM = {
46         (bcdesc_t*)&des_desc,
47         (bcdesc_t*)&tdes2_desc,
48         (bcdesc_t*)&tdes_desc,
49         NULL
50 };
51 /*****************************************************************************
52  *  additional validation-functions                                                                                      *
53  *****************************************************************************/
54
55 void testrun_nessie_des(void){
56         bcal_nessie_multiple(algolist);
57 }
58
59 void testrun_performance_des(void){
60         bcal_performance_multiple(algolist);
61 }
62 /*****************************************************************************
63  * main                                         
64  *****************************************************************************/
65
66 const char nessie_str[]      PROGMEM = "nessie";
67 const char test_str[]        PROGMEM = "test";
68 const char performance_str[] PROGMEM = "performance";
69 const char echo_str[]        PROGMEM = "echo";
70
71 cmdlist_entry_t cmdlist[] PROGMEM = {
72         { nessie_str,      NULL, testrun_nessie_des },
73         { test_str,        NULL, testrun_nessie_des },
74         { performance_str, NULL, testrun_performance_des},
75         { echo_str,    (void*)1, (void_fpt)echo_ctrl},
76         { NULL,            NULL, NULL}
77 };
78
79 int main (void){
80         DEBUG_INIT();
81         
82         cli_rx = (cli_rx_fpt)uart0_getc;
83         cli_tx = (cli_tx_fpt)uart0_putc;                
84         for(;;){
85                 cli_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
86                 cli_putstr(algo_name);
87                 cli_putstr_P(PSTR(")\r\nloaded and running\r\n"));
88                 cmd_interface(cmdlist);
89         }
90 }