]> git.cryptolib.org Git - arm-crypto-lib.git/blob - test_src/main-tdes-test.c
switching to dedicated endian switching function
[arm-crypto-lib.git] / test_src / main-tdes-test.c
1 /* main-tdes-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  * tdes test-suit
21  * 
22 */
23 #include <stdint.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include "config.h"
27 #include "cli.h"
28 #include "dump.h"
29 #include "uart_lowlevel.h"
30 #include "sysclock.h"
31 #include "hw_gptm.h"
32
33 #include "nessie_bc_test.h"
34 #include "performance_test.h"
35 #include "bcal-performance.h"
36 #include "bcal_tdes.h"
37 #include "bcal_tdes2.h"
38
39 char* algo_name = "TDES";
40
41 void uart0_putc(char byte){
42         uart_putc(UART_0, byte);
43 }
44
45 char uart0_getc(void){
46         return uart_getc(UART_0);
47 }
48
49 const bcdesc_t* algolist[] = {
50         (bcdesc_t*)&tdes_desc,
51         (bcdesc_t*)&tdes2_desc,
52         NULL
53 };
54
55 /*****************************************************************************
56  *  additional validation-functions                                                                                      *
57  *****************************************************************************/
58 void tdes_init_dummy(const void* key, uint16_t keysize_b, void* ctx){
59         memcpy(ctx, key, 8*3);
60 }
61
62 void tdes_enc_dummy(void* buffer, void* ctx){
63         tdes_enc(buffer, buffer, ctx);
64
65
66 void tdes_dec_dummy(void* buffer, void* ctx){
67         tdes_dec(buffer, buffer, ctx);
68
69
70 void testrun_nessie_tdes(void){
71         nessie_bc_init();
72         nessie_bc_ctx.blocksize_B =   8;
73         nessie_bc_ctx.keysize_b   = 192;
74         nessie_bc_ctx.name        = algo_name;
75         nessie_bc_ctx.ctx_size_B  = 8*3;
76         nessie_bc_ctx.cipher_enc  = (nessie_bc_enc_fpt)tdes_enc_dummy;
77         nessie_bc_ctx.cipher_dec  = (nessie_bc_dec_fpt)tdes_dec_dummy;
78         nessie_bc_ctx.cipher_genctx  = (nessie_bc_gen_fpt)tdes_init_dummy;
79
80         nessie_bc_run();
81 }
82
83
84 void testrun_performance_tdes(void){
85         bcal_performance_multiple(algolist);
86 }
87 /*****************************************************************************
88  *  main                                                                                                                                         *
89  *****************************************************************************/
90
91 const char nessie_str[]      = "nessie";
92 const char test_str[]        = "test";
93 const char performance_str[] = "performance";
94 const char echo_str[]        = "echo";
95
96 cmdlist_entry_t cmdlist[] = {
97         { nessie_str,      NULL, testrun_nessie_tdes},
98         { test_str,        NULL, testrun_nessie_tdes},
99         { performance_str, NULL, testrun_performance_tdes},
100         { echo_str,    (void*)1, (void_fpt)echo_ctrl},
101         { NULL,            NULL, NULL}
102 };
103
104 int main (void){
105         sysclk_set_freq(SYS_FREQ);
106         sysclk_mosc_verify_enable();
107         uart_init(UART_0, 115200, 8, UART_PARATY_NONE, UART_STOPBITS_ONE);
108         gptm_set_timer_32periodic(TIMER0);
109
110         cli_rx = uart0_getc;
111         cli_tx = uart0_putc;
112         
113         for(;;){
114                 cli_putstr("\r\n\r\nARM-Crypto-Lib VS (");
115                 cli_putstr(algo_name);
116                 cli_putstr("; ");
117                 cli_putstr(__DATE__);
118                 cli_putc(' ');
119                 cli_putstr(__TIME__);
120                 cli_putstr(")\r\nloaded and running\r\n");
121                 cmd_interface(cmdlist);
122         }
123 }