]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-a5_1-test.c
moving from uart to cli
[avr-crypto-lib.git] / test_src / main-a5_1-test.c
1 /* main-a5_1-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  * A5/1 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 <A5_1.h>
30 #include "nessie_stream_test.h"
31
32 #include <stdint.h>
33 #include <string.h>
34 #include "cli.h"
35
36 char* algo_name = "A5_1";
37
38 /*****************************************************************************
39  *  additional validation-functions                                                                                      *
40  *****************************************************************************/
41 void a51_genctx_dummy(uint8_t* key, uint16_t keysize, void* ctx){
42         a5_1_init(ctx,key, keysize, NULL, 0);
43 }
44
45
46
47 void testrun_nessie_a51(void){
48         nessie_stream_ctx.outsize_b =   8; /* actually unused */
49         nessie_stream_ctx.keysize_b =  64; 
50         nessie_stream_ctx.ivsize_b =   64;
51         nessie_stream_ctx.name = algo_name;
52         nessie_stream_ctx.ctx_size_B = sizeof(a5_1_ctx_t);
53         nessie_stream_ctx.cipher_genctx = (nessie_stream_genctx_fpt)a51_genctx_dummy;
54         nessie_stream_ctx.cipher_enc = (nessie_stream_genenc_fpt)a5_1_gen;
55         
56         nessie_stream_run();    
57 }
58
59
60
61 /*****************************************************************************
62  *  main                                                                                                                                         *
63  *****************************************************************************/
64
65 const char nessie_str[]      PROGMEM = "nessie";
66 const char test_str[]        PROGMEM = "test";
67 const char testkey_str[]     PROGMEM = "testkey";
68 const char performance_str[] PROGMEM = "performance";
69 const char echo_str[]        PROGMEM = "echo";
70
71 cmdlist_entry_t cmdlist[] PROGMEM = {
72         { nessie_str,      NULL, testrun_nessie_a51, NULL},
73 /*      { performance_str, NULL, testrun_performance_a51, NULL}, */
74         { echo_str,    (void*)1, (void_fpt)echo_ctrl, NULL},
75         { NULL,            NULL, NULL, NULL}
76 };
77
78 int main (void){
79         DEBUG_INIT();
80         
81         
82         cli_rx = uart_getc;
83         cli_tx = uart_putc;             
84         for(;;){
85                 cli_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
86                 cli_putstr(algo_name);
87                 cli_putstr_P(PSTR(")\r\nloaded and running\r\n"));
88                 cmd_interface(cmdlist);
89         }
90         
91 }
92