X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-hmac-md5-test.c;h=6843935a5631a464364fafb1f1bf74875773a23c;hb=HEAD;hp=dc495367c346a73bbc60330bbf7d767c9db1d03c;hpb=701cee0d98aab48dd3192c8cc7c77eb42581bc56;p=avr-crypto-lib.git diff --git a/test_src/main-hmac-md5-test.c b/test_src/main-hmac-md5-test.c index dc49536..6843935 100644 --- a/test_src/main-hmac-md5-test.c +++ b/test_src/main-hmac-md5-test.c @@ -1,7 +1,7 @@ /* main-hmac-md5-test.c */ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org) 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 @@ -21,24 +21,13 @@ * */ -#include "config.h" - -#include "uart_i.h" -#include "debug.h" +#include "main-test-common.h" #include "md5.h" #include "hmac-md5.h" -/* -#include "base64_enc.h" -#include "base64_dec.h" -*/ #include "nessie_mac_test.h" -#include -#include -#include "cli.h" - -char* algo_name = "HMAC-MD5"; +char *algo_name = "HMAC-MD5"; /***************************************************************************** * additional validation-functions * @@ -98,7 +87,7 @@ void hmacmd5_interactive(void){ cli_hexdump(hmac, HMAC_MD5_BYTES); } -void strhexdump(char* dest, void* src, uint16_t length){ +void strhexdump(char *dest, void *src, uint16_t length){ char table[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', @@ -182,13 +171,10 @@ const 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); } }