X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fmain-serpent-test.c;h=51575b9f6d5cda26c0ab396dcca35ef95cc271b2;hp=896d879b22afac2211a81eb67e869b5e4fe37f43;hb=6483e60140be5fe4ab60de85cdf679fc0518dc99;hpb=b022a029def51d63f330c12bf07156db294c8958 diff --git a/test_src/main-serpent-test.c b/test_src/main-serpent-test.c index 896d879..51575b9 100644 --- a/test_src/main-serpent-test.c +++ b/test_src/main-serpent-test.c @@ -30,6 +30,8 @@ #include "nessie_bc_test.h" #include "cli.h" #include "performance_test.h" +#include "bcal-performance.h" +#include "bcal_serpent.h" #include #include @@ -37,6 +39,11 @@ char* algo_name = "Serpent"; +const bcdesc_t* algolist[] PROGMEM = { + (bcdesc_t*)&serpent_desc, + NULL +}; + /***************************************************************************** * additional validation-functions * *****************************************************************************/ @@ -77,41 +84,7 @@ void testrun_test_serpent(void){ } void testrun_performance_serpent(void){ - uint64_t t; - char str[16]; - uint8_t key[32], data[16]; - serpent_ctx_t ctx; - - calibrateTimer(); - print_overhead(); - - memset(key, 0, 32); - memset(data, 0, 16); - - startTimer(1); - serpent_init(key, 0, &ctx); - t = stopTimer(); - cli_putstr_P(PSTR("\r\n\tctx-gen time: ")); - ultoa((unsigned long)t, str, 10); - cli_putstr(str); - - - startTimer(1); - serpent_enc(data, &ctx); - t = stopTimer(); - cli_putstr_P(PSTR("\r\n\tencrypt time: ")); - ultoa((unsigned long)t, str, 10); - cli_putstr(str); - - - startTimer(1); - serpent_dec(data, &ctx); - t = stopTimer(); - cli_putstr_P(PSTR("\r\n\tdecrypt time: ")); - ultoa((unsigned long)t, str, 10); - cli_putstr(str); - - cli_putstr_P(PSTR("\r\n")); + bcal_performance_multiple(algolist); } /***************************************************************************** * main *