X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-noekeon-test.c;h=0f7c6b76a0c8d10a1355317009ddf647e2d152d3;hb=701cee0d98aab48dd3192c8cc7c77eb42581bc56;hp=47f9661521eb954539cb4726566f7f99d012cadb;hpb=6483e60140be5fe4ab60de85cdf679fc0518dc99;p=avr-crypto-lib.git diff --git a/test_src/main-noekeon-test.c b/test_src/main-noekeon-test.c index 47f9661..0f7c6b7 100644 --- a/test_src/main-noekeon-test.c +++ b/test_src/main-noekeon-test.c @@ -26,12 +26,12 @@ #include "uart_i.h" #include "debug.h" -#include -#include "nessie_bc_test.h" -#include "cli.h" +#include "noekeon.h" +#include "bcal-nessie.h" #include "performance_test.h" #include "bcal-performance.h" #include "bcal_noekeon.h" +#include "cli.h" #include #include @@ -39,7 +39,7 @@ char* algo_name = "Noekeon"; -const bcdesc_t* algolist[] PROGMEM = { +const bcdesc_t* const algolist[] PROGMEM = { (bcdesc_t*)&noekeon_direct_desc, (bcdesc_t*)&noekeon_indirect_desc, NULL @@ -47,49 +47,9 @@ const bcdesc_t* algolist[] PROGMEM = { /***************************************************************************** * additional validation-functions * *****************************************************************************/ -void noekeon_genctx_dummy(uint8_t* key, uint16_t keysize, void* ctx){ - noekeon_init(key, ctx); -} - -void testrun_nessie_noekeon_indirect(void){ - char str[strlen(algo_name)+10]; - strcpy(str, algo_name); - strcat(str, "-indirect"); - - nessie_bc_ctx.blocksize_B = 16; - nessie_bc_ctx.keysize_b = 128; - nessie_bc_ctx.name = str; - nessie_bc_ctx.ctx_size_B = sizeof(noekeon_ctx_t); - nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)noekeon_enc; - nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)noekeon_dec; - nessie_bc_ctx.cipher_genctx = (nessie_bc_gen_fpt)noekeon_genctx_dummy; - - nessie_bc_run(); -} - -void noekeon_genctx_dummy_direct(uint8_t* key, uint16_t keysize, void* ctx){ - memcpy(ctx, key, 16); -} - -void testrun_nessie_noekeon_direct(void){ - char str[strlen(algo_name)+10]; - strcpy(str, algo_name); - strcat(str, "-Direct"); - - nessie_bc_ctx.blocksize_B = 16; - nessie_bc_ctx.keysize_b = 128; - nessie_bc_ctx.name = str; - nessie_bc_ctx.ctx_size_B = sizeof(noekeon_ctx_t); - nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)noekeon_enc; - nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)noekeon_dec; - nessie_bc_ctx.cipher_genctx = (nessie_bc_gen_fpt)noekeon_genctx_dummy_direct; - - nessie_bc_run(); -} void testrun_nessie_noekeon(void){ - testrun_nessie_noekeon_direct(); - testrun_nessie_noekeon_indirect(); + bcal_nessie_multiple(algolist); } @@ -97,7 +57,7 @@ void testrun_stdtest_rundirect(void* data, void* key){ cli_putstr_P(PSTR("\r\n ")); cli_putstr_P(PSTR("k = ")); cli_hexdump(key,16); - + cli_putstr_P(PSTR("\r\n ")); cli_putstr_P(PSTR("a = ")); cli_hexdump(data,16); @@ -193,11 +153,11 @@ const char indirect_str[] PROGMEM = "indirect"; const char performance_str[] PROGMEM = "performance"; const char echo_str[] PROGMEM = "echo"; -cmdlist_entry_t cmdlist[] PROGMEM = { +const cmdlist_entry_t cmdlist[] PROGMEM = { { nessie_str, NULL, testrun_nessie_noekeon}, { test_str, NULL, testrun_stdtest_noekeon}, - { direct_str, NULL, testrun_nessie_noekeon_direct}, - { indirect_str, NULL, testrun_nessie_noekeon_indirect}, +// { direct_str, NULL, testrun_nessie_noekeon_direct}, +// { indirect_str, NULL, testrun_nessie_noekeon_indirect}, { performance_str, NULL, testrun_performance_noekeon}, { echo_str, (void*)1, (void_fpt)echo_ctrl}, { NULL, NULL, NULL}