X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;ds=sidebyside;f=test_src%2Fmain-aes192-test.c;h=3d50e7d9998461f31c97c3244e1e95727d5e53a1;hb=41e9e95f07e04170b8732426b2c5d73400b4a2bd;hp=ea92c11b035a54ec7b7c8be0885b277c58153dd0;hpb=b8d6b2bd3ddea45506f584c7d44fe5fff0557ed1;p=avr-crypto-lib.git diff --git a/test_src/main-aes192-test.c b/test_src/main-aes192-test.c index ea92c11..3d50e7d 100644 --- a/test_src/main-aes192-test.c +++ b/test_src/main-aes192-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_aes192.h" #include #include @@ -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){