X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fmain-present-test.c;h=3a08c120fe0efa2b8522eec8966c3f0a7807a92f;hp=442e14237d62f1954c13ba50abfdf630abd8def1;hb=27f4804c185ae24b3b6367bb2fdb898d6692d0f6;hpb=7715ef86b09869014eb5afd319e4acc2ce157b00 diff --git a/test_src/main-present-test.c b/test_src/main-present-test.c index 442e142..3a08c12 100644 --- a/test_src/main-present-test.c +++ b/test_src/main-present-test.c @@ -21,24 +21,16 @@ * */ -#include "config.h" - -#include "uart_i.h" -#include "debug.h" +#include "main-test-common.h" #include #include -#include "cli.h" #include "performance_test.h" #include "bcal-performance.h" #include "bcal-nessie.h" #include "bcal_present80.h" #include "bcal_present128.h" -#include -#include -#include - char* algo_name = "Present"; const bcdesc_t* const algolist[] PROGMEM = { @@ -146,15 +138,15 @@ const cmdlist_entry_t cmdlist[] PROGMEM = { { NULL, NULL, NULL} }; -int main (void){ - DEBUG_INIT(); - - cli_rx = (cli_rx_fpt)uart0_getc; - cli_tx = (cli_tx_fpt)uart0_putc; +int main(void) { + main_setup(); + + shavs_algolist=(hfdesc_t**)algolist; + shavs_algo=(hfdesc_t*)&sha256_desc; + for(;;){ - cli_putstr_P(PSTR("\r\n\r\nCrypto-VS (")); - cli_putstr(algo_name); - cli_putstr_P(PSTR(")\r\nloaded and running\r\n")); + welcome_msg(algo_name); cmd_interface(cmdlist); - } + } + }