]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-rc6-test.c
moving from uart to cli
[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) 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  * rc6 test-suit
21  * 
22 */
23
24 #include "config.h"
25 #include "serial-tools.h"
26 #include "uart.h"
27 #include "debug.h"
28
29 #include "rc6.h"
30 #include "nessie_bc_test.h"
31 #include "cli.h"
32 #include "performance_test.h"
33
34 #include <stdint.h>
35 #include <string.h>
36 #include <stdlib.h>
37
38 #define RC6_ROUNDS 20
39 char* algo_name = "RC6-32/20/16";
40
41 /*****************************************************************************
42  *  additional validation-functions                                                                                      *
43  *****************************************************************************/
44 void rc6_genctx_dummy(uint8_t* key, uint16_t keysize_b, void* ctx){
45         rc6_initl(key, keysize_b, RC6_ROUNDS, ctx);
46 }
47
48 void testrun_nessie_rc6(void){
49         nessie_bc_init();
50         nessie_bc_ctx.blocksize_B =  16;
51         nessie_bc_ctx.keysize_b   = 128;
52         nessie_bc_ctx.name        = algo_name;
53         nessie_bc_ctx.ctx_size_B  = sizeof(rc6_ctx_t);
54         nessie_bc_ctx.cipher_enc  = (nessie_bc_enc_fpt)rc6_enc;
55         nessie_bc_ctx.cipher_dec  = (nessie_bc_dec_fpt)rc6_dec;
56         nessie_bc_ctx.cipher_free = (nessie_bc_free_fpt)rc6_free;
57         nessie_bc_ctx.cipher_genctx  = (nessie_bc_gen_fpt)rc6_init;
58         
59         nessie_bc_run();
60         
61         nessie_bc_ctx.keysize_b   = 192;
62         nessie_bc_run();
63         
64         nessie_bc_ctx.keysize_b   = 256;
65         nessie_bc_run();
66         
67 }
68
69
70 void testrun_performance_rc6(void){
71         uint64_t t;
72         char str[16];
73         uint8_t key[16], data[16];
74         rc6_ctx_t ctx;
75         
76         calibrateTimer();
77         print_overhead();
78         
79         memset(key,  0, 16);
80         memset(data, 0, 16);
81         
82         startTimer(1);
83         rc6_init(key, 128, &ctx);
84         t = stopTimer();
85         cli_putstr_P(PSTR("\r\n\tctx-gen time: "));
86         ultoa((unsigned long)t, str, 10);
87         cli_putstr(str);        
88         
89         startTimer(1);
90         rc6_enc(data, &ctx);
91         t = stopTimer();
92         cli_putstr_P(PSTR("\r\n\tencrypt time: "));
93         ultoa((unsigned long)t, str, 10);
94         cli_putstr(str);
95         
96         startTimer(1);
97         rc6_dec(data, &ctx);
98         t = stopTimer();
99         cli_putstr_P(PSTR("\r\n\tdecrypt time: "));
100         ultoa((unsigned long)t, str, 10);
101         cli_putstr(str);
102
103         startTimer(1);
104         rc6_free(&ctx);
105         t = stopTimer();
106         cli_putstr_P(PSTR("\r\n\tfree time: "));
107         ultoa((unsigned long)t, str, 10);
108         cli_putstr(str);
109         cli_putstr_P(PSTR("\r\n"));
110 }
111 /*****************************************************************************
112  *  main                                                                                                                                         *
113  *****************************************************************************/
114
115 const char nessie_str[]      PROGMEM = "nessie";
116 const char test_str[]        PROGMEM = "test";
117 const char performance_str[] PROGMEM = "performance";
118 const char echo_str[]        PROGMEM = "echo";
119
120 cmdlist_entry_t cmdlist[] PROGMEM = {
121         { nessie_str,      NULL, testrun_nessie_rc6},
122         { test_str,        NULL, testrun_nessie_rc6},
123         { performance_str, NULL, testrun_performance_rc6},
124         { echo_str,    (void*)1, (void_fpt)echo_ctrl},
125         { NULL,            NULL, NULL}
126 };
127
128 int main (void){
129         DEBUG_INIT();
130         
131         cli_rx = uart_getc;
132         cli_tx = uart_putc;             
133         for(;;){
134                 cli_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
135                 cli_putstr(algo_name);
136                 cli_putstr_P(PSTR(")\r\nloaded and running\r\n"));
137                 cmd_interface(cmdlist);
138         }
139 }