]> git.cryptolib.org Git - arm-crypto-lib.git/blob - test_src/main-keccak-test.c
more files
[arm-crypto-lib.git] / test_src / main-keccak-test.c
1 /* main-keccak-test.c */
2 /*
3     This file is part of the ARM-Crypto-Lib.
4     Copyright (C) 2006-2010  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  * Keccak test-suit
21  *
22 */
23
24 #include <stdint.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include "cli.h"
28 #include "dump.h"
29 #include "uart_lowlevel.h"
30 #include "sysclock.h"
31 #include "hw_gptm.h"
32
33 #include "shavs.h"
34 #include "nessie_hash_test.h"
35 #include "performance_test.h"
36 #include "hfal-nessie.h"
37 #include "hfal-performance.h"
38 #include "hfal-test.h"
39
40 #include "keccak.h"
41 #include "hfal_keccak.h"
42
43 void uart0_putc(char byte){
44         uart_putc(UART_0, byte);
45 }
46
47 char uart0_getc(void){
48         return uart_getc(UART_0);
49 }
50
51 const char* algo_name = "Keccak";
52
53
54 const hfdesc_t* algolist[] = {
55         (hfdesc_t*)&keccak224_desc,
56         (hfdesc_t*)&keccak256_desc,
57         (hfdesc_t*)&keccak384_desc,
58         (hfdesc_t*)&keccak512_desc,
59         NULL
60 };
61
62 /*****************************************************************************
63  *  additional validation-functions                                                                                      *
64  *****************************************************************************/
65 void test_256(void){
66         uint8_t data[] = {0x53, 0x58, 0x7B,  0xC8 };
67         uint8_t hash[32];
68         uint8_t null[KECCAK256_BLOCKSIZE_B];
69         memset(null, 0, KECCAK256_BLOCKSIZE_B);
70         keccak_ctx_t ctx;
71         keccak256_init(&ctx);
72         keccak_lastBlock(&ctx, data, 29);
73         keccak256_ctx2hash(hash, &ctx);
74         cli_putstr("\r\n testhash: ");
75         cli_hexdump(hash, 32);
76 }
77
78
79 void performance_keccak(void){
80         hfal_performance_multiple(algolist);
81 }
82
83 void testrun_nessie_keccak(void){
84         hfal_nessie_multiple(algolist);
85 }
86 /*****************************************************************************
87  *  main                                                                                                                                         *
88  *****************************************************************************/
89
90 const char nessie_str[]       = "nessie";
91 const char test256_str[]      = "test256";
92 const char performance_str[]  = "performance";
93 const char echo_str[]         = "echo";
94 const char shavs_list_str[]   = "shavs_list";
95 const char shavs_set_str[]    = "shavs_set";
96 const char shavs_test1_str[]  = "shavs_test1";
97 const char shavs_test3_str[]  = "shavs_test3";
98
99 cmdlist_entry_t cmdlist[]  = {
100         { nessie_str,                NULL, testrun_nessie_keccak     },
101         { performance_str,           NULL, performance_keccak        },
102         { test256_str,               NULL, test_256                  },
103         { shavs_list_str,            NULL, shavs_listalgos           },
104         { shavs_set_str,         (void*)1, (void_fpt)shavs_setalgo   },
105         { shavs_test1_str,           NULL, shavs_test1               },
106         { shavs_test3_str,           NULL, shavs_test3               },
107         { echo_str,              (void*)1, (void_fpt)echo_ctrl       },
108         { NULL,                      NULL, NULL                      }
109 };
110
111 int main(void) {
112         sysclk_set_80MHz();
113         sysclk_mosc_verify_enable();
114     uart_init(UART_0, 115200, 8, UART_PARATY_NONE, UART_STOPBITS_ONE);
115     gptm_set_timer_32periodic(TIMER0);
116
117         cli_rx = uart0_getc;
118     cli_tx = uart0_putc;
119
120         shavs_algolist=(hfdesc_t**)algolist;
121         shavs_algo=(hfdesc_t*)&keccak256_desc;
122
123         for(;;){
124                 cli_putstr("\r\n\r\nARM-Crypto-Lib VS (");
125                 cli_putstr(algo_name);
126                 cli_putstr("; ");
127                 cli_putstr(__DATE__);
128                 cli_putc(' ');
129                 cli_putstr(__TIME__);
130                 cli_putstr(")\r\nloaded and running\r\n");
131         cmd_interface(cmdlist);
132     }
133
134 }