]> git.cryptolib.org Git - avr-crypto-lib.git/blob - test_src/main-hmac-sha1-test.c
538d36accc255d460524278b4e6dc4fe499bfd32
[avr-crypto-lib.git] / test_src / main-hmac-sha1-test.c
1 /* main-hmac-sha1-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  * HMAC-SHA1 test-suit
21  * 
22 */
23
24 #include "config.h"
25
26 #include "uart_i.h"
27 #include "debug.h"
28
29 #include "sha1.h"
30 #include "hmac-sha1.h"
31
32 #include "nessie_mac_test.h"
33
34 #include <stdint.h>
35 #include <string.h>
36 #include "cli.h"
37
38 char* algo_name = "HMAC-SHA1";
39
40 /*****************************************************************************
41  *  additional validation-functions                                                                                      *
42  *****************************************************************************/
43
44 void testrun_nessie_hmacsha1(void){
45         nessie_mac_ctx.macsize_b   = HMAC_SHA1_BITS;
46         nessie_mac_ctx.keysize_b   = HMAC_SHA1_BLOCK_BITS;
47         nessie_mac_ctx.blocksize_B = HMAC_SHA1_BLOCK_BYTES;
48         nessie_mac_ctx.ctx_size_B  = sizeof(hmac_sha1_ctx_t);
49         nessie_mac_ctx.name = algo_name;
50         nessie_mac_ctx.mac_init = (nessie_mac_init_fpt)hmac_sha1_init;
51         nessie_mac_ctx.mac_next = (nessie_mac_next_fpt)hmac_sha1_nextBlock;
52         nessie_mac_ctx.mac_last = (nessie_mac_last_fpt)hmac_sha1_lastBlock;
53         nessie_mac_ctx.mac_conv = (nessie_mac_conv_fpt)hmac_sha1_final;
54         
55         nessie_mac_run();
56 }
57
58
59 /*****************************************************************************
60  *  main                                                                                                                                         *
61  *****************************************************************************/
62
63 const char nessie_str[]      PROGMEM = "nessie";
64 const char test_str[]        PROGMEM = "test";
65 /* const char performance_str[] PROGMEM = "performance"; */
66 const char echo_str[]        PROGMEM = "echo";
67
68 cmdlist_entry_t cmdlist[] PROGMEM = {
69         { nessie_str,      NULL, testrun_nessie_hmacsha1},
70         { test_str,        NULL, testrun_nessie_hmacsha1},
71 /*      { performance_str, NULL, testrun_performance_hmacsha1}, */
72         { echo_str,    (void*)1, (void_fpt)echo_ctrl},
73         { NULL,            NULL, NULL}
74 };
75
76 int main (void){
77         DEBUG_INIT();
78         
79         cli_rx = (cli_rx_fpt)uart0_getc;
80         cli_tx = (cli_tx_fpt)uart0_putc;                
81         for(;;){
82                 cli_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
83                 cli_putstr(algo_name);
84                 cli_putstr_P(PSTR(")\r\nloaded and running\r\n"));
85                 cmd_interface(cmdlist);
86         }
87 }