]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-rc6-test.c
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / test_src / main-rc6-test.c
1 /* main-rc6-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  * rc6 test-suit
21  * 
22 */
23
24 #include "main-test-common.h"
25
26 #include "rc6.h"
27 #include "performance_test.h"
28 #include "bcal-performance.h"
29 #include "bcal-nessie.h"
30 #include "bcal_rc6.h"
31
32 #define RC6_ROUNDS 20
33 char *algo_name = "RC6-32/20/16";
34
35 const bcdesc_t *const algolist[] PROGMEM = {
36         (bcdesc_t*)&rc6_desc,
37         NULL
38 };
39 /*****************************************************************************
40  *  additional validation-functions                                                                                      *
41  *****************************************************************************/
42 void rc6_genctx_dummy(uint8_t *key, uint16_t keysize_b, void *ctx){
43         rc6_initl(key, keysize_b, RC6_ROUNDS, ctx);
44 }
45
46 void testrun_nessie_rc6(void){
47         bcal_nessie_multiple(algolist);
48 }
49
50
51 void testrun_performance_rc6(void){
52         bcal_performance_multiple(algolist);
53 }
54 /*****************************************************************************
55  *  main                                                                                                                                         *
56  *****************************************************************************/
57
58 const char nessie_str[]      PROGMEM = "nessie";
59 const char test_str[]        PROGMEM = "test";
60 const char performance_str[] PROGMEM = "performance";
61 const char echo_str[]        PROGMEM = "echo";
62
63 const cmdlist_entry_t cmdlist[] PROGMEM = {
64         { nessie_str,      NULL, testrun_nessie_rc6},
65         { test_str,        NULL, testrun_nessie_rc6},
66         { performance_str, NULL, testrun_performance_rc6},
67         { echo_str,    (void*)1, (void_fpt)echo_ctrl},
68         { NULL,            NULL, NULL}
69 };
70
71 int main (void){
72     main_setup();
73
74     for(;;){
75         welcome_msg(algo_name);
76         cmd_interface(cmdlist);
77         }
78 }