]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-tdes-test.c
fbe7e004ba52fe4eb4d357817c3aa07a79495762
[avr-crypto-lib.git] / test_src / main-tdes-test.c
1 /* main-tdes-test.c */
2 /*
3     This file is part of the 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  * tdes 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 "des.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 char* cipher_name = "TDES";
39
40 /*****************************************************************************
41  *  additional validation-functions                                                                                      *
42  *****************************************************************************/
43 void tdes_init_dummy(const void* key, uint16_t keysize_b, void* ctx){
44         memcpy(ctx, key, 8*3);
45 }
46
47 void tdes_enc_dummy(void* buffer, void* ctx){
48         tdes_enc(buffer, buffer, ctx);
49
50
51 void tdes_dec_dummy(void* buffer, void* ctx){
52         tdes_dec(buffer, buffer, ctx);
53
54
55 void testrun_nessie_tdes(void){
56         nessie_bc_init();
57         nessie_bc_ctx.blocksize_B =   8;
58         nessie_bc_ctx.keysize_b   = 192;
59         nessie_bc_ctx.name        = cipher_name;
60         nessie_bc_ctx.ctx_size_B  = sizeof(8*3);
61         nessie_bc_ctx.cipher_enc  = (nessie_bc_enc_fpt)tdes_enc_dummy;
62         nessie_bc_ctx.cipher_dec  = (nessie_bc_dec_fpt)tdes_dec_dummy;
63         nessie_bc_ctx.cipher_genctx  = (nessie_bc_gen_fpt)tdes_init_dummy;
64
65         nessie_bc_run();
66 }
67
68
69 void testrun_performance_tdes(void){
70         uint64_t t;
71         char str[16];
72         uint8_t key[8*3], data[8];
73         
74         
75         calibrateTimer();
76         print_overhead();
77         
78         memset(key,  0, 8*3);
79         memset(data, 0, 8);
80         
81         startTimer(1);
82         tdes_enc(data, data, key);
83         t = stopTimer();
84         uart_putstr_P(PSTR("\r\n\tencrypt time: "));
85         ultoa((unsigned long)t, str, 10);
86         uart_putstr(str);
87         
88         startTimer(1);
89         tdes_dec(data, data, key);
90         t = stopTimer();
91         uart_putstr_P(PSTR("\r\n\tdecrypt time: "));
92         ultoa((unsigned long)t, str, 10);
93         uart_putstr(str);
94         uart_putstr_P(PSTR("\r\n"));
95 }
96 /*****************************************************************************
97  *  main                                                                                                                                         *
98  *****************************************************************************/
99
100 int main (void){
101         char  str[20];
102         DEBUG_INIT();
103         uart_putstr("\r\n");
104
105         uart_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
106         uart_putstr(cipher_name);
107         uart_putstr_P(PSTR(")\r\nloaded and running\r\n"));
108
109         PGM_P    u   = PSTR("nessie\0test\0performance\0");
110         void_fpt v[] = {testrun_nessie_tdes, testrun_nessie_tdes, testrun_performance_tdes};
111
112         while(1){ 
113                 if (!getnextwordn(str,20)){DEBUG_S("DBG: W1\r\n"); goto error;}
114                 if(execcommand_d0_P(str, u, v)<0){
115                         uart_putstr_P(PSTR("\r\nunknown command\r\n"));
116                 }
117                 continue;
118         error:
119                 uart_putstr("ERROR\r\n");
120         }
121         
122 }
123