]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-arcfour-test.c
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / test_src / main-arcfour-test.c
index eb2e63e56dd870a4735aa3ed58749972263a48d2..7f402155138f89e27d11f68147c366145740f4af 100644 (file)
@@ -1,7 +1,7 @@
 /* main-arcfour-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
@@ -45,8 +45,7 @@ void testrun_nessie_arcfour(void){
 }
 
 void testrun_performance_arcfour(void){
-       uint64_t t;
-       char str[16];
+       uint32_t t;
        uint8_t key[16];
        arcfour_ctx_t ctx;
        
@@ -55,21 +54,16 @@ void testrun_performance_arcfour(void){
        
        memset(key,  0, 16);
        
+    uart0_flush();
        startTimer(1);
        arcfour_init(key, 16, &ctx);
        t = stopTimer();
-       cli_putstr_P(PSTR("\r\n\tctx-gen time: "));
-       ultoa((unsigned long)t, str, 10);
-       cli_putstr(str);        
-       
+       printf_P(PSTR("\tctx-gen time: %10"PRIu32"\n"), t);
+       uart0_flush();
        startTimer(1);
        arcfour_gen(&ctx);
        t = stopTimer();
-       cli_putstr_P(PSTR("\r\n\tencrypt time: "));
-       ultoa((unsigned long)t, str, 10);
-       cli_putstr(str);        
-       
-       cli_putstr_P(PSTR("\r\n"));     
+       printf_P(PSTR("\tencrypt time: %10"PRIu32"\n"), t);
 }