]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-shabea-test.c
progress in asm version of keccak (theta now in asm)
[avr-crypto-lib.git] / test_src / main-shabea-test.c
index ba78a7861bf7a04ea7dce1a8b7d92860a2c26021..471881eac18c81fb40cb68cbf39e703e71f0d9a9 100644 (file)
  * GPLv3 or later
  * 
  */
-#include "config.h"
-#include "serial-tools.h"
-#include "uart.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 <stdint.h>
-#include <string.h>
-#include <stdlib.h>
-
 char* algo_name = "Shabea";
 
 /*****************************************************************************
@@ -84,19 +77,19 @@ void testrun_performance_shabea(void){
        startTimer(1);
        shabea256(data, key, 256, 1, 16);
        t = stopTimer();
-       uart_putstr_P(PSTR("\r\n\tencrypt time: "));
+       cli_putstr_P(PSTR("\r\n\tencrypt time: "));
        ultoa((unsigned long)t, str, 10);
-       uart_putstr(str);
+       cli_putstr(str);
        
        
        startTimer(1);
        shabea256(data, key, 256, 0, 16);
        t = stopTimer();
-       uart_putstr_P(PSTR("\r\n\tdecrypt time: "));
+       cli_putstr_P(PSTR("\r\n\tdecrypt time: "));
        ultoa((unsigned long)t, str, 10);
-       uart_putstr(str);
+       cli_putstr(str);
        
-       uart_putstr_P(PSTR("\r\n"));
+       cli_putstr_P(PSTR("\r\n"));
 }
 
 /*****************************************************************************
@@ -104,24 +97,24 @@ void testrun_performance_shabea(void){
  *****************************************************************************/
 
 void testencrypt(uint8_t* block, uint8_t* key){
-       uart_putstr("\r\n==testy-encrypt==\r\n key: ");
-       uart_hexdump(key,16);
-       uart_putstr("\r\n plain: ");
-       uart_hexdump(block,32);
+       cli_putstr("\r\n==testy-encrypt==\r\n key: ");
+       cli_hexdump(key,16);
+       cli_putstr("\r\n plain: ");
+       cli_hexdump(block,32);
        shabea256(block,key,128,1,16);
-       uart_putstr("\r\n crypt: ");
-       uart_hexdump(block,32);
+       cli_putstr("\r\n crypt: ");
+       cli_hexdump(block,32);
 }
 
 void testdecrypt(uint8_t* block, uint8_t* key){
 
-       uart_putstr("\r\n==testy-decrypt==\r\n key: ");
-       uart_hexdump(key,16);
-       uart_putstr("\r\n crypt: ");
-       uart_hexdump(block,32);
+       cli_putstr("\r\n==testy-decrypt==\r\n key: ");
+       cli_hexdump(key,16);
+       cli_putstr("\r\n crypt: ");
+       cli_hexdump(block,32);
        shabea256(block,key,128,0,16);
-       uart_putstr("\r\n plain: ");
-       uart_hexdump(block,32);
+       cli_putstr("\r\n plain: ");
+       cli_hexdump(block,32);
 }
 
 void testrun_shabea(void){
@@ -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();
-       uart_putstr("\r\n");
-       cli_rx = uart_getc;
-       cli_tx = uart_putc;             
-       for(;;){
-               uart_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
-               uart_putstr(algo_name);
-               uart_putstr_P(PSTR(")\r\nloaded and running\r\n"));
-               cmd_interface(cmdlist);
+    main_setup();
+
+    for(;;){
+        welcome_msg(algo_name);
+        cmd_interface(cmdlist);
        }
 }