]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-aes192-test.c
a lot of fixes
[avr-crypto-lib.git] / test_src / main-aes192-test.c
1 /* main-aes192-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  * AES-192 test-suit
21  *
22 */
23
24 #include "config.h"
25
26 #include "uart_i.h"
27 #include "debug.h"
28
29 #include "aes.h"
30 #include "cli.h"
31 #include "performance_test.h"
32 #include "blockcipher_descriptor.h"
33 #include "bcal-performance.h"
34 #include "bcal-nessie.h"
35 #include "bcal_aes192.h"
36 #include <stdint.h>
37 #include <string.h>
38 #include <stdlib.h>
39 #include <avr/pgmspace.h>
40
41 char* algo_name = "AES-192";
42
43 const bcdesc_t* const algolist[] PROGMEM = {
44         (bcdesc_t*)&aes192_desc,
45         NULL
46 };
47
48 /*****************************************************************************
49  *  additional validation-functions                                                                                      *
50  *****************************************************************************/
51
52 void testrun_nessie_aes(void){
53         bcal_nessie_multiple(algolist);
54 }
55
56 void testrun_testkey_aes192(void){
57         uint8_t key[24] = { 0x8e, 0x73, 0xb0, 0xf7,
58                             0xda, 0x0e, 0x64, 0x52,
59                             0xc8, 0x10, 0xf3, 0x2b,
60                             0x80, 0x90, 0x79, 0xe5,
61                             0x62, 0xf8, 0xea, 0xd2,
62                             0x52, 0x2c, 0x6b, 0x7b};
63         aes192_ctx_t ctx;
64         uint8_t i;
65         memset(&ctx, 0, sizeof(aes192_ctx_t));
66         aes192_init(key, &ctx);
67         cli_putstr_P(PSTR("\r\n\r\n keyschedule test (FIPS 197):\r\n key:   "));
68         cli_hexdump(key, 24);
69         for(i=0; i<13; ++i){
70                 cli_putstr_P(PSTR("\r\n index: "));
71                 cli_putc('0'+i/10);
72                 cli_putc('0'+i%10);
73                 cli_putstr_P(PSTR(" roundkey "));
74                 cli_hexdump(ctx.key[i].ks, 16);
75         }
76 }
77
78 void testrun_testkey_aes(void){
79         testrun_testkey_aes192();
80 }
81 /*****************************************************************************/
82
83
84 void testrun_performance_aes(void){
85         bcal_performance_multiple(algolist);
86 }
87
88
89 /*****************************************************************************
90  *  main                                                                                                                                         *
91  *****************************************************************************/
92
93 const char nessie_str[]      PROGMEM = "nessie";
94 const char test_str[]        PROGMEM = "test";
95 const char testkey_str[]     PROGMEM = "testkey";
96 const char performance_str[] PROGMEM = "performance";
97 const char echo_str[]        PROGMEM = "echo";
98
99 const cmdlist_entry_t cmdlist[] PROGMEM = {
100         { nessie_str,      NULL, testrun_nessie_aes },
101         { test_str,        NULL, testrun_nessie_aes},
102         { testkey_str,     NULL, testrun_testkey_aes},
103         { performance_str, NULL, testrun_performance_aes},
104         { echo_str,    (void*)1, (void_fpt)echo_ctrl},
105         { NULL,            NULL, NULL}
106 };
107
108 int main (void){
109         DEBUG_INIT();
110
111         cli_rx = (cli_rx_fpt)uart0_getc;
112         cli_tx = (cli_tx_fpt)uart0_putc;
113         for(;;){
114                 cli_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
115                 cli_putstr(algo_name);
116                 cli_putstr_P(PSTR(")\r\nloaded and running\r\n"));
117                 cmd_interface(cmdlist);
118         }
119 }
120