X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-present-test.c;h=23d350644386e34fee5b67e26affb875f2ec94eb;hb=7b5401ab9ce23a5da1de8b6c7de3a1aa20ac4cf8;hp=1ae9ad60924f90c313b6c5ca47417529bb72e744;hpb=52ec168ece9d61bd9cb652235dfe8faee6232a11;p=avr-crypto-lib.git diff --git a/test_src/main-present-test.c b/test_src/main-present-test.c index 1ae9ad6..23d3506 100644 --- a/test_src/main-present-test.c +++ b/test_src/main-present-test.c @@ -22,7 +22,7 @@ */ #include "config.h" -#include "serial-tools.h" + #include "uart_i.h" #include "debug.h" @@ -30,6 +30,8 @@ #include "nessie_bc_test.h" #include "cli.h" #include "performance_test.h" +#include "bcal/bcal-performance.h" +#include "bcal/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); } /*****************************************************************************