]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-seed-test.c
moving from uart to cli
[avr-crypto-lib.git] / test_src / main-seed-test.c
index 8d264dccfef79d8ab5fdbb87ed2036ac7c16753b..768e8d9523c5ec89c31105668492888add4ab774 100644 (file)
@@ -78,27 +78,27 @@ void testrun_performance_seed(void){
        startTimer(1);
        seed_init(key, &ctx);
        t = stopTimer();
-       uart_putstr_P(PSTR("\r\n\tctx-gen time: "));
+       cli_putstr_P(PSTR("\r\n\tctx-gen time: "));
        ultoa((unsigned long)t, str, 10);
-       uart_putstr(str);
+       cli_putstr(str);
        
        
        startTimer(1);
        seed_enc(data, &ctx);
        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);
        seed_dec(data, &ctx);
        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"));
 }
 
 /*****************************************************************************
@@ -107,26 +107,26 @@ void testrun_performance_seed(void){
 
 void testencrypt(uint8_t* block, uint8_t* key){
        seed_ctx_t ctx;
-       uart_putstr("\r\n==testy-encrypt==\r\n key:   ");
-       uart_hexdump(key,16);
+       cli_putstr("\r\n==testy-encrypt==\r\n key:   ");
+       cli_hexdump(key,16);
        seed_init(key, &ctx);
-       uart_putstr("\r\n plain: ");
-       uart_hexdump(block,16);
+       cli_putstr("\r\n plain: ");
+       cli_hexdump(block,16);
        seed_enc(block, &ctx);
-       uart_putstr("\r\n crypt: ");
-       uart_hexdump(block,16);
+       cli_putstr("\r\n crypt: ");
+       cli_hexdump(block,16);
 }
 
 void testdecrypt(uint8_t* block, uint8_t* key){
        seed_ctx_t ctx;
-       uart_putstr("\r\n==testy-decrypt==\r\n key:   ");
-       uart_hexdump(key,16);
+       cli_putstr("\r\n==testy-decrypt==\r\n key:   ");
+       cli_hexdump(key,16);
        seed_init(key, &ctx);
-       uart_putstr("\r\n crypt: ");
-       uart_hexdump(block,16);
+       cli_putstr("\r\n crypt: ");
+       cli_hexdump(block,16);
        seed_dec(block, &ctx);
-       uart_putstr("\r\n plain: ");
-       uart_hexdump(block,16);
+       cli_putstr("\r\n plain: ");
+       cli_hexdump(block,16);
 }
 
 void testrun_seed(void){
@@ -178,13 +178,13 @@ 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"));
+               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);
        }
 }