X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fmain-rc6-test.c;h=67513adbabdd9c0e8a6caee8ab2085fe2dc3e84b;hp=c3bb0f029789fb855157c2cd8de6adb460234069;hb=6483e60140be5fe4ab60de85cdf679fc0518dc99;hpb=b022a029def51d63f330c12bf07156db294c8958 diff --git a/test_src/main-rc6-test.c b/test_src/main-rc6-test.c index c3bb0f0..67513ad 100644 --- a/test_src/main-rc6-test.c +++ b/test_src/main-rc6-test.c @@ -30,6 +30,8 @@ #include "nessie_bc_test.h" #include "cli.h" #include "performance_test.h" +#include "bcal-performance.h" +#include "bcal_rc6.h" #include #include @@ -38,6 +40,10 @@ #define RC6_ROUNDS 20 char* algo_name = "RC6-32/20/16"; +const bcdesc_t* algolist[] PROGMEM = { + (bcdesc_t*)&rc6_desc, + NULL +}; /***************************************************************************** * additional validation-functions * *****************************************************************************/ @@ -68,45 +74,7 @@ void testrun_nessie_rc6(void){ void testrun_performance_rc6(void){ - uint64_t t; - char str[16]; - uint8_t key[16], data[16]; - rc6_ctx_t ctx; - - calibrateTimer(); - print_overhead(); - - memset(key, 0, 16); - memset(data, 0, 16); - - startTimer(1); - rc6_init(key, 128, &ctx); - t = stopTimer(); - cli_putstr_P(PSTR("\r\n\tctx-gen time: ")); - ultoa((unsigned long)t, str, 10); - cli_putstr(str); - - startTimer(1); - rc6_enc(data, &ctx); - t = stopTimer(); - cli_putstr_P(PSTR("\r\n\tencrypt time: ")); - ultoa((unsigned long)t, str, 10); - cli_putstr(str); - - startTimer(1); - rc6_dec(data, &ctx); - t = stopTimer(); - cli_putstr_P(PSTR("\r\n\tdecrypt time: ")); - ultoa((unsigned long)t, str, 10); - cli_putstr(str); - - startTimer(1); - rc6_free(&ctx); - t = stopTimer(); - cli_putstr_P(PSTR("\r\n\tfree time: ")); - ultoa((unsigned long)t, str, 10); - cli_putstr(str); - cli_putstr_P(PSTR("\r\n")); + bcal_performance_multiple(algolist); } /***************************************************************************** * main *