X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-aes128-test.c;h=2c8e7f379e54c2ff3615fd3b706ba61eaf0f2acf;hb=41e9e95f07e04170b8732426b2c5d73400b4a2bd;hp=1934026022b6c9e3c72f057da0e4ed58ab500fc9;hpb=794b705a0b4dedf4eab3aabcf39f76bf9856ee3f;p=avr-crypto-lib.git diff --git a/test_src/main-aes128-test.c b/test_src/main-aes128-test.c index 1934026..2c8e7f3 100644 --- a/test_src/main-aes128-test.c +++ b/test_src/main-aes128-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_aes128.h" #include #include @@ -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){