X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-aes192-test.c;h=0eca624a04b000bc0bd828f7438d452e3a206f6f;hb=54cfadc0fd16b6995f1e3bab2c5766fae89c4a6b;hp=1274b28ab3098cae7dde2c517021e95c2c0368c0;hpb=794b705a0b4dedf4eab3aabcf39f76bf9856ee3f;p=avr-crypto-lib.git diff --git a/test_src/main-aes192-test.c b/test_src/main-aes192-test.c index 1274b28..0eca624 100644 --- a/test_src/main-aes192-test.c +++ b/test_src/main-aes192-test.c @@ -26,12 +26,12 @@ #include "uart_i.h" #include "debug.h" -#include "aes/aes.h" -#include "nessie_bc_test.h" +#include "aes.h" #include "cli.h" #include "performance_test.h" #include "blockcipher_descriptor.h" #include "bcal-performance.h" +#include "bcal-nessie.h" #include "bcal_aes192.h" #include #include @@ -40,7 +40,7 @@ char* algo_name = "AES-192"; -const bcdesc_t* algolist[] PROGMEM = { +const bcdesc_t* const algolist[] PROGMEM = { (bcdesc_t*)&aes192_desc, NULL }; @@ -50,14 +50,7 @@ const bcdesc_t* algolist[] PROGMEM = { *****************************************************************************/ void testrun_nessie_aes(void){ - nessie_bc_ctx.blocksize_B = 16; - nessie_bc_ctx.keysize_b = 192; - nessie_bc_ctx.name = algo_name; - nessie_bc_ctx.ctx_size_B = sizeof(aes192_ctx_t); - nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)aes192_enc; - nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)aes192_dec; - nessie_bc_ctx.cipher_genctx = (nessie_bc_gen_fpt)aes_init; - nessie_bc_run(); + bcal_nessie_multiple(algolist); } void testrun_testkey_aes192(void){ @@ -103,7 +96,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_nessie_aes}, { testkey_str, NULL, testrun_testkey_aes},