]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-des-test.c
clean up
[avr-crypto-lib.git] / test_src / main-des-test.c
1 /* main-des-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  * des test-suit
21  * 
22 */
23
24 #include "config.h"
25
26 #include "uart_i.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 #include "bcal/bcal-performance.h"
34 #include "bcal/bcal_des.h"
35
36 #include <stdint.h>
37 #include <string.h>
38 #include <stdlib.h>
39
40 char* algo_name = "DES";
41
42 const bcdesc_t* algolist[] PROGMEM = {
43         (bcdesc_t*)&des_desc,
44         NULL
45 };
46 /*****************************************************************************
47  *  additional validation-functions                                                                                      *
48  *****************************************************************************/
49 void des_init_dummy(const void* key, uint16_t keysize_b, void* ctx){
50         memcpy(ctx, key, 8);
51 }
52
53 void des_enc_dummy(void* buffer, void* ctx){
54         des_enc(buffer, buffer, ctx);
55
56
57 void des_dec_dummy(void* buffer, void* ctx){
58         des_dec(buffer, buffer, ctx);
59
60
61 void testrun_nessie_des(void){
62         nessie_bc_init();
63         nessie_bc_ctx.blocksize_B =   8;
64         nessie_bc_ctx.keysize_b   =  64;
65         nessie_bc_ctx.name        = algo_name;
66         nessie_bc_ctx.ctx_size_B  = 8;
67         nessie_bc_ctx.cipher_enc  = (nessie_bc_enc_fpt)des_enc_dummy;
68         nessie_bc_ctx.cipher_dec  = (nessie_bc_dec_fpt)des_dec_dummy;
69         nessie_bc_ctx.cipher_genctx  = (nessie_bc_gen_fpt)des_init_dummy;
70         
71         nessie_bc_run();
72 }
73
74
75 void testrun_performance_des(void){
76         bcal_performance_multiple(algolist);
77 }
78 /*****************************************************************************
79  * main                                         
80  *****************************************************************************/
81
82 const char nessie_str[]      PROGMEM = "nessie";
83 const char test_str[]        PROGMEM = "test";
84 const char performance_str[] PROGMEM = "performance";
85 const char echo_str[]        PROGMEM = "echo";
86
87 cmdlist_entry_t cmdlist[] PROGMEM = {
88         { nessie_str,      NULL, testrun_nessie_des },
89         { test_str,        NULL, testrun_nessie_des },
90         { performance_str, NULL, testrun_performance_des},
91         { echo_str,    (void*)1, (void_fpt)echo_ctrl},
92         { NULL,            NULL, NULL}
93 };
94
95 int main (void){
96         DEBUG_INIT();
97         
98         cli_rx = (cli_rx_fpt)uart0_getc;
99         cli_tx = (cli_tx_fpt)uart0_putc;                
100         for(;;){
101                 cli_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
102                 cli_putstr(algo_name);
103                 cli_putstr_P(PSTR(")\r\nloaded and running\r\n"));
104                 cmd_interface(cmdlist);
105         }
106 }