X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-shabea-test.c;h=d35a29cd11926da112b5096e5e315d8d413488e8;hb=2c909fca2a13cd76a526515bda5d0292483d7a55;hp=5a6c5fa273c1aa7d524f955b897e4b50722c6927;hpb=52ec168ece9d61bd9cb652235dfe8faee6232a11;p=avr-crypto-lib.git diff --git a/test_src/main-shabea-test.c b/test_src/main-shabea-test.c index 5a6c5fa..d35a29c 100644 --- a/test_src/main-shabea-test.c +++ b/test_src/main-shabea-test.c @@ -25,34 +25,27 @@ * GPLv3 or later * */ -#include "config.h" -#include "serial-tools.h" -#include "uart_i.h" -#include "debug.h" + +#include "main-test-common.h" #include "shabea.h" #include "nessie_bc_test.h" -#include "cli.h" #include "performance_test.h" -#include -#include -#include - -char* algo_name = "Shabea"; +char *algo_name = "Shabea"; /***************************************************************************** * additional validation-functions * *****************************************************************************/ -void shabea_genctx_dummy(uint8_t* key, uint16_t keysize_b, void* ctx){ +void shabea_genctx_dummy(uint8_t *key, uint16_t keysize_b, void *ctx){ memcpy(ctx, key, (keysize_b+7)/8); } -void shabea_enc_dummy(void* buffer, void* ctx){ +void shabea_enc_dummy(void *buffer, void *ctx){ shabea256(buffer, ctx, 256, 1, 16); } -void shabea_dec_dummy(void* buffer, void* ctx){ +void shabea_dec_dummy(void *buffer, void *ctx){ shabea256(buffer, ctx, 256, 0, 16); } @@ -103,7 +96,7 @@ void testrun_performance_shabea(void){ * self tests * *****************************************************************************/ -void testencrypt(uint8_t* block, uint8_t* key){ +void testencrypt(uint8_t *block, uint8_t *key){ cli_putstr("\r\n==testy-encrypt==\r\n key: "); cli_hexdump(key,16); cli_putstr("\r\n plain: "); @@ -113,7 +106,7 @@ void testencrypt(uint8_t* block, uint8_t* key){ cli_hexdump(block,32); } -void testdecrypt(uint8_t* block, uint8_t* key){ +void testdecrypt(uint8_t *block, uint8_t *key){ cli_putstr("\r\n==testy-decrypt==\r\n key: "); cli_hexdump(key,16); @@ -171,7 +164,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_shabea}, { test_str, NULL, testrun_shabea}, { performance_str, NULL, testrun_performance_shabea}, @@ -180,14 +173,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); } }