X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-shacal2_enc-test.c;h=58e77d4141c3ee0a4ee9aa402ca224b406a653e2;hb=22985930c9c2c610ae18e2d8df0f3ea78a082134;hp=c3e39c38b65890d41344984f9c63fedaaddabdf1;hpb=302f07c97444e2f5f5560dc2fd9af58d4b591d45;p=avr-crypto-lib.git diff --git a/test_src/main-shacal2_enc-test.c b/test_src/main-shacal2_enc-test.c index c3e39c3..58e77d4 100644 --- a/test_src/main-shacal2_enc-test.c +++ b/test_src/main-shacal2_enc-test.c @@ -21,30 +21,22 @@ * */ -#include "config.h" - -#include "uart_i.h" -#include "debug.h" +#include "main-test-common.h" #include "shacal2_enc.h" #include "nessie_bc_test.h" -#include "cli.h" #include "performance_test.h" -#include -#include -#include - -char* algo_name = "Shacal2 encryption only"; +char *algo_name = "Shacal2 encryption only"; /***************************************************************************** * additional validation-functions * *****************************************************************************/ -void shacal2_genctx_dummy(uint8_t* key, uint16_t keysize_b, void* ctx){ +void shacal2_genctx_dummy(uint8_t *key, uint16_t keysize_b, void *ctx){ memcpy(ctx, key, (keysize_b+7)/8); } -void shacal2_enc_dummy(void* buffer, void* ctx){ +void shacal2_enc_dummy(void *buffer, void *ctx){ shacal2_enc(buffer, ctx, SHACAL2_KEYSIZE); } @@ -88,7 +80,7 @@ const char test_str[] PROGMEM = "test"; const char performance_str[] PROGMEM = "performance"; const char echo_str[] PROGMEM = "echo"; -cmdlist_entry_t cmdlist[] PROGMEM = { +const cmdlist_entry_t cmdlist[] PROGMEM = { { nessie_str, NULL, testrun_nessie_shacal2enc}, { test_str, NULL, testrun_nessie_shacal2enc}, { performance_str, NULL, testrun_performance_shacal2enc}, @@ -97,14 +89,10 @@ cmdlist_entry_t cmdlist[] PROGMEM = { }; int main (void){ - DEBUG_INIT(); - - cli_rx = (cli_rx_fpt)uart0_getc; - cli_tx = (cli_tx_fpt)uart0_putc; - for(;;){ - cli_putstr_P(PSTR("\r\n\r\nCrypto-VS (")); - cli_putstr(algo_name); - cli_putstr_P(PSTR(")\r\nloaded and running\r\n")); - cmd_interface(cmdlist); + main_setup(); + + for(;;){ + welcome_msg(algo_name); + cmd_interface(cmdlist); } }