X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-cubehash-test.c;fp=test_src%2Fmain-cubehash-test.c;h=ef96612d1e4b6fd23d9ebf4ad17578425a3dc955;hb=2e57335be9e73ba2132026f4bebfdcef536765c8;hp=0000000000000000000000000000000000000000;hpb=5f46191d2615ebe2caa6e111b478031a34f20b9e;p=arm-crypto-lib.git diff --git a/test_src/main-cubehash-test.c b/test_src/main-cubehash-test.c new file mode 100644 index 0000000..ef96612 --- /dev/null +++ b/test_src/main-cubehash-test.c @@ -0,0 +1,137 @@ +/* main-cubehash-test.c */ +/* + This file is part of the ARM-Crypto-Lib. + Copyright (C) 2006-2010 Daniel Otte (daniel.otte@rub.de) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +/* + * CubeHash test-suit + * +*/ +#include +#include +#include +#include "cli.h" +#include "dump.h" +#include "uart_lowlevel.h" +#include "sysclock.h" +#include "hw_gptm.h" + +#include "shavs.h" +#include "nessie_hash_test.h" +#include "performance_test.h" +#include "hfal-nessie.h" +#include "hfal-performance.h" +#include "hfal-test.h" + +#include "cubehash.h" +#include "hfal_cubehash.h" + +#include +#include +#include + +const char* algo_name = "CubeHash"; + + +const hfdesc_t* algolist[] = { + (hfdesc_t*)&cubehash224_desc, + (hfdesc_t*)&cubehash256_desc, + (hfdesc_t*)&cubehash384_desc, + (hfdesc_t*)&cubehash512_desc, + NULL +}; + +void uart0_putc(char byte){ + uart_putc(UART_0, byte); +} + +char uart0_getc(void){ + return uart_getc(UART_0); +} + +/***************************************************************************** + * additional validation-functions * + *****************************************************************************/ + +void cubehash256_test0(void){ + cubehash_ctx_t ctx; + uint8_t hash[32]; + cubehash256_init(&ctx); + cli_putstr("\r\ninit done "); + cubehash_lastBlock(&ctx, NULL, 0); + cli_putstr("\r\nlastblock done "); + cubehash256_ctx2hash(hash, &ctx); + cli_putstr("\r\nhash = "); + cli_hexdump(hash, 32); +} + +void performance_cubehash(void){ + hfal_performance_multiple(algolist); +} + +void testrun_nessie_cubehash(void){ + hfal_nessie_multiple(algolist); +} +/***************************************************************************** + * main * + *****************************************************************************/ + +const char nessie_str[] = "nessie"; +const char test256_str[] = "test256"; +const char performance_str[] = "performance"; +const char echo_str[] = "echo"; +const char shavs_list_str[] = "shavs_list"; +const char shavs_set_str[] = "shavs_set"; +const char shavs_test1_str[] = "shavs_test1"; +const char shavs_test3_str[] = "shavs_test3"; + +cmdlist_entry_t cmdlist[] = { + { nessie_str, NULL, testrun_nessie_cubehash }, + { test256_str, NULL, cubehash256_test0 }, + { performance_str, NULL, performance_cubehash }, + { shavs_list_str, NULL, shavs_listalgos }, + { shavs_set_str, (void*)1, (void_fpt)shavs_setalgo }, + { shavs_test1_str, NULL, shavs_test1 }, + { shavs_test3_str, NULL, shavs_test3 }, + { echo_str, (void*)1, (void_fpt)echo_ctrl }, + { NULL, NULL, NULL } +}; + + +int main(void) { + sysclk_set_80MHz(); + sysclk_mosc_verify_enable(); + uart_init(UART_0, 115200, 8, UART_PARATY_NONE, UART_STOPBITS_ONE); + gptm_set_timer_32periodic(TIMER0); + + cli_rx = uart0_getc; + cli_tx = uart0_putc; + + shavs_algolist=(hfdesc_t**)algolist; + shavs_algo=(hfdesc_t*)&cubehash256_desc; + + for(;;){ + cli_putstr("\r\n\r\nARM-Crypto-Lib VS ("); + cli_putstr(algo_name); + cli_putstr("; "); + cli_putstr(__DATE__); + cli_putc(' '); + cli_putstr(__TIME__); + cli_putstr(")\r\nloaded and running\r\n"); + cmd_interface(cmdlist); + } + +}