]> git.cryptolib.org Git - arm-crypto-lib.git/blob - test_src/main-rc6-test.c
switching to dedicated endian switching function
[arm-crypto-lib.git] / test_src / main-rc6-test.c
1 /* main-rc6-test.c */
2 /*
3     This file is part of the ARM-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  * rc6 test-suit
21  * 
22 */
23
24 #include "main-test-common.h"
25
26 #include "rc6.h"
27 #include "nessie_bc_test.h"
28 #include "performance_test.h"
29 #include "bcal-performance.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* algolist[] = {
36         (bcdesc_t*)&rc6_desc,
37         NULL
38 };
39 /*****************************************************************************
40  *  additional validation-functions                                                                                      *
41  *****************************************************************************/
42
43 void testrun_nessie_rc6(void){
44         nessie_bc_init();
45         nessie_bc_ctx.blocksize_B =  16;
46         nessie_bc_ctx.keysize_b   = 128;
47         nessie_bc_ctx.name        = algo_name;
48         nessie_bc_ctx.ctx_size_B  = sizeof(rc6_ctx_t);
49         nessie_bc_ctx.cipher_enc  = (nessie_bc_enc_fpt)rc6_enc;
50         nessie_bc_ctx.cipher_dec  = (nessie_bc_dec_fpt)rc6_dec;
51         nessie_bc_ctx.cipher_free = (nessie_bc_free_fpt)rc6_free;
52         nessie_bc_ctx.cipher_genctx  = (nessie_bc_gen_fpt)rc6_init;
53         
54         nessie_bc_run();
55         
56         nessie_bc_ctx.keysize_b   = 192;
57         nessie_bc_run();
58         
59         nessie_bc_ctx.keysize_b   = 256;
60         nessie_bc_run();
61         
62 }
63
64
65 void testrun_performance_rc6(void){
66         bcal_performance_multiple(algolist);
67 }
68 /*****************************************************************************
69  *  main                                                                                                                                         *
70  *****************************************************************************/
71
72 const char nessie_str[]      = "nessie";
73 const char test_str[]        = "test";
74 const char performance_str[] = "performance";
75 const char echo_str[]        = "echo";
76
77 const cmdlist_entry_t cmdlist[] = {
78         { nessie_str,      NULL, testrun_nessie_rc6},
79         { test_str,        NULL, testrun_nessie_rc6},
80         { performance_str, NULL, testrun_performance_rc6},
81         { echo_str,    (void*)1, (void_fpt)echo_ctrl},
82         { NULL,            NULL, NULL}
83 };
84
85 int main (void){
86         main_setup();
87         
88         for(;;){
89                 welcome_msg(algo_name);
90                 cmd_interface(cmdlist);
91     }
92 }