]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-xtea-test.c
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / test_src / main-xtea-test.c
1 /* main-xtea-test.c */
2 /*
3     This file is part of the AVR-Crypto-Lib.
4     Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
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  * XTEA test-suit
21  * 
22 */
23
24
25 #include "main-test-common.h"
26
27 #include "xtea.h"
28 #include "nessie_bc_test.h"
29 #include "performance_test.h"
30 #include "bcal-performance.h"
31 #include "bcal-nessie.h"
32 #include "bcal_xtea.h"
33
34 char *algo_name = "XTEA";
35
36 const bcdesc_t *const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const const algolist[] PROGMEM = {
37         (bcdesc_t*)&xtea_desc,
38         NULL
39 };
40
41 /******************************************************************************/
42
43 void testrun_nessie_xtea(void){
44         bcal_nessie_multiple(algolist);
45 }
46
47 void testrun_performance_xtea(void){
48         bcal_performance_multiple(algolist);
49 }
50
51 void test_xtea(void){
52         uint8_t key[16];
53         uint8_t data[8];
54
55         memset(key, 0, 16);
56         key[0] = 0x80;
57         memset(data, 0, 8);
58         cli_putstr_P(PSTR("\r\n*** XTEA test ***\r\n key:   "));
59         cli_hexdump(key, 16);
60         cli_putstr_P(PSTR("\r\n plain: "));
61         cli_hexdump(data, 8);
62         xtea_enc(data, data, key);
63         cli_putstr_P(PSTR("\r\n crypt: "));
64         cli_hexdump(data, 8);
65         xtea_dec(data, data, key);
66         cli_putstr_P(PSTR("\r\n plain: "));
67         cli_hexdump(data, 8);
68 }
69
70 /*****************************************************************************
71  *  main                                                                                                                                         *
72  *****************************************************************************/
73
74 const char nessie_str[]      PROGMEM = "nessie";
75 const char test_str[]        PROGMEM = "test";
76 const char performance_str[] PROGMEM = "performance";
77 const char echo_str[]        PROGMEM = "echo";
78
79 const cmdlist_entry_t cmdlist[] PROGMEM = {
80         { nessie_str,      NULL, testrun_nessie_xtea},
81         { test_str,        NULL, test_xtea},
82         { performance_str, NULL, testrun_performance_xtea},
83         { echo_str,    (void*)1, (void_fpt)echo_ctrl},
84         { NULL,            NULL, NULL}
85 };
86
87 int main (void){
88     main_setup();
89
90     for(;;){
91         welcome_msg(algo_name);
92         cmd_interface(cmdlist);
93         }
94 }