]> git.cryptolib.org Git - avr-crypto-lib.git/blob - main-rc6-test.c
insereated GPLv3 stub
[avr-crypto-lib.git] / main-rc6-test.c
1 /* main-rc6-test.c */
2 /*
3     This file is part of the Crypto-avr-lib/microcrypt-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  * rc5 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* cipher_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        = cipher_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         uint16_t i,c;
72         uint64_t t;
73         char str[16];
74         uint8_t key[16], data[16];
75         rc6_ctx_t ctx;
76         
77         calibrateTimer();
78         getOverhead(&c, &i);
79         uart_putstr_P(PSTR("\r\n\r\n=== benchmark ==="));
80         utoa(c, str, 10);
81         uart_putstr_P(PSTR("\r\n\tconst overhead:     "));
82         uart_putstr(str);
83         utoa(i, str, 10);
84         uart_putstr_P(PSTR("\r\n\tinterrupt overhead: "));
85         uart_putstr(str);
86         
87         memset(key,  0, 16);
88         memset(data, 0, 16);
89         
90         startTimer(1);
91         rc6_init(key, 128, &ctx);
92         t = stopTimer();
93         uart_putstr_P(PSTR("\r\n\tctx-gen time: "));
94         ultoa((unsigned long)t, str, 10);
95         uart_putstr(str);       
96         
97         startTimer(1);
98         rc6_enc(data, &ctx);
99         t = stopTimer();
100         uart_putstr_P(PSTR("\r\n\tencrypt time: "));
101         ultoa((unsigned long)t, str, 10);
102         uart_putstr(str);
103         
104         startTimer(1);
105         rc6_dec(data, &ctx);
106         t = stopTimer();
107         uart_putstr_P(PSTR("\r\n\tdecrypt time: "));
108         ultoa((unsigned long)t, str, 10);
109         uart_putstr(str);
110
111         startTimer(1);
112         rc6_free(&ctx);
113         t = stopTimer();
114         uart_putstr_P(PSTR("\r\n\tfree time: "));
115         ultoa((unsigned long)t, str, 10);
116         uart_putstr(str);
117         uart_putstr_P(PSTR("\r\n"));
118 }
119 /*****************************************************************************
120  *  main                                                                                                                                         *
121  *****************************************************************************/
122
123 int main (void){
124         char  str[20];
125         DEBUG_INIT();
126         uart_putstr("\r\n");
127
128         uart_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
129         uart_putstr(cipher_name);
130         uart_putstr_P(PSTR(")\r\nloaded and running\r\n"));
131
132         PGM_P    u   = PSTR("nessie\0test\0performance\0");
133         void_fpt v[] = {testrun_nessie_rc6, testrun_nessie_rc6, testrun_performance_rc6};
134
135         while(1){ 
136                 if (!getnextwordn(str,20)){DEBUG_S("DBG: W1\r\n"); goto error;}
137                 if(execcommand_d0_P(str, u, v)<0){
138                         uart_putstr_P(PSTR("\r\nunknown command\r\n"));
139                 }
140                 continue;
141         error:
142                 uart_putstr("ERROR\r\n");
143         }
144         
145 }
146