X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-aes128-test.c;h=d90c8bdd6836779a12b979b4f6e4d600222d3428;hb=701cee0d98aab48dd3192c8cc7c77eb42581bc56;hp=1410d92749efca0f4d0681fab0ddec11fd1f6adc;hpb=b8d6b2bd3ddea45506f584c7d44fe5fff0557ed1;p=avr-crypto-lib.git diff --git a/test_src/main-aes128-test.c b/test_src/main-aes128-test.c index 1410d92..d90c8bd 100644 --- a/test_src/main-aes128-test.c +++ b/test_src/main-aes128-test.c @@ -27,11 +27,11 @@ #include "debug.h" #include "aes.h" -#include "nessie_bc_test.h" #include "cli.h" #include "performance_test.h" #include "blockcipher_descriptor.h" #include "bcal-performance.h" +#include "bcal-nessie.h" #include "bcal_aes128.h" #include #include @@ -40,7 +40,7 @@ char* algo_name = "AES-128"; -const bcdesc_t* algolist[] PROGMEM = { +const bcdesc_t* const algolist[] PROGMEM = { (bcdesc_t*)&aes128_desc, NULL }; @@ -51,14 +51,7 @@ const bcdesc_t* algolist[] PROGMEM = { *****************************************************************************/ void testrun_nessie_aes(void){ - nessie_bc_ctx.blocksize_B = 16; - nessie_bc_ctx.keysize_b = 128; - nessie_bc_ctx.name = algo_name; - nessie_bc_ctx.ctx_size_B = sizeof(aes128_ctx_t); - nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)aes128_enc; - nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)aes128_dec; - nessie_bc_ctx.cipher_genctx = (nessie_bc_gen_fpt)aes_init; - nessie_bc_run(); + bcal_nessie_multiple(algolist); } void testrun_test_aes(void){ @@ -124,7 +117,7 @@ const char testkey_str[] PROGMEM = "testkey"; 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_aes }, { test_str, NULL, testrun_test_aes}, { testkey_str, NULL, testrun_testkey_aes},