3 This file is part of the AVR-Crypto-Lib.
4 Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de)
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.
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.
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/>.
24 #include "main-test-common.h"
27 #include "performance_test.h"
28 #include "bcal-performance.h"
29 #include "bcal-nessie.h"
33 char *algo_name = "RC6-32/20/16";
35 const bcdesc_t *const algolist[] PROGMEM = {
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);
46 void testrun_nessie_rc6(void){
47 bcal_nessie_multiple(algolist);
51 void testrun_performance_rc6(void){
52 bcal_performance_multiple(algolist);
54 /*****************************************************************************
56 *****************************************************************************/
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";
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},
75 welcome_msg(algo_name);
76 cmd_interface(cmdlist);