X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-noekeon-test.c;h=0f7c6b76a0c8d10a1355317009ddf647e2d152d3;hb=06d9213f132d05f61b65acc51de6f7ad1b42f48a;hp=f19a91ca0ad0fd7d39ff19c6997e624c33b6c9bf;hpb=7b5401ab9ce23a5da1de8b6c7de3a1aa20ac4cf8;p=avr-crypto-lib.git diff --git a/test_src/main-noekeon-test.c b/test_src/main-noekeon-test.c index f19a91c..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/bcal-performance.h" -#include "bcal/bcal_noekeon.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}