X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-aes256-test.c;h=60258938b4112bb3aebb54cbdddfe701c3ed74ef;hb=1de7784dc5fe0e2ebac23c0ee883a38f65a96b62;hp=68a82acef40757b708402d1cf6fed91f92a56524;hpb=7b5401ab9ce23a5da1de8b6c7de3a1aa20ac4cf8;p=avr-crypto-lib.git diff --git a/test_src/main-aes256-test.c b/test_src/main-aes256-test.c index 68a82ac..6025893 100644 --- a/test_src/main-aes256-test.c +++ b/test_src/main-aes256-test.c @@ -26,13 +26,13 @@ #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/bcal-performance.h" -#include "bcal/bcal_aes256.h" +#include "bcal-performance.h" +#include "bcal-nessie.h" +#include "bcal_aes256.h" #include #include #include @@ -49,14 +49,7 @@ const bcdesc_t* algolist[] PROGMEM = { *****************************************************************************/ void testrun_nessie_aes(void){ - nessie_bc_ctx.blocksize_B = 16; - nessie_bc_ctx.keysize_b = 256; - nessie_bc_ctx.name = algo_name; - nessie_bc_ctx.ctx_size_B = sizeof(aes256_ctx_t); - nessie_bc_ctx.cipher_enc = (nessie_bc_enc_fpt)aes256_enc; - nessie_bc_ctx.cipher_dec = (nessie_bc_dec_fpt)aes256_dec; - nessie_bc_ctx.cipher_genctx = (nessie_bc_gen_fpt)aes_init; - nessie_bc_run(); + bcal_nessie_multiple(algolist); } void testrun_testkey_aes256(void){