X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fmain-present-test.c;h=96b0ff71117a1a6e5e21fc2ccc89db327af4e88c;hp=c7c65d23639179613c9d6463ebd577d0daee6359;hb=6483e60140be5fe4ab60de85cdf679fc0518dc99;hpb=b022a029def51d63f330c12bf07156db294c8958 diff --git a/test_src/main-present-test.c b/test_src/main-present-test.c index c7c65d2..96b0ff7 100644 --- a/test_src/main-present-test.c +++ b/test_src/main-present-test.c @@ -30,6 +30,8 @@ #include "nessie_bc_test.h" #include "cli.h" #include "performance_test.h" +#include "bcal-performance.h" +#include "bcal_present.h" #include #include @@ -37,6 +39,10 @@ char* algo_name = "Present"; +const bcdesc_t* algolist[] PROGMEM = { + (bcdesc_t*)&present_desc, + NULL +}; /***************************************************************************** * additional validation-functions * *****************************************************************************/ @@ -95,32 +101,7 @@ void testrun_self_present(void){ } void testrun_performance_present(void){ - uint64_t t; - uint8_t key[10], data[8]; - present_ctx_t ctx; - - calibrateTimer(); - print_overhead(); - - memset(key, 0, 10); - memset(data, 0, 8); - - startTimer(1); - present_init(key, 80, &ctx); - t = stopTimer(); - print_time_P(PSTR("\tctx-gen time: "),t); - - startTimer(1); - present_enc(data, &ctx); - t = stopTimer(); - print_time_P(PSTR("\tencrypt time: "), t); - - startTimer(1); - present_dec(data, &ctx); - t = stopTimer(); - print_time_P(PSTR("\tdecrypt time: "), t); - - cli_putstr_P(PSTR("\r\n")); + bcal_performance_multiple(algolist); } /*****************************************************************************