X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fnessie_bc_test.c;h=6d55c57f539866533bf4139fa474cc7d7ea054fe;hb=b97b5aeaa3569443d9b95a77a388c6615b33f9e3;hp=f9a91e547a8f82f745e9f9df73201d0da8245e50;hpb=2159c273c9d3361571a6ff1ab63d9bc76582fbab;p=avr-crypto-lib.git diff --git a/test_src/nessie_bc_test.c b/test_src/nessie_bc_test.c index f9a91e5..6d55c57 100644 --- a/test_src/nessie_bc_test.c +++ b/test_src/nessie_bc_test.c @@ -1,6 +1,6 @@ /* nessie_bc_test.c */ /* - This file is part of the Crypto-avr-lib/microcrypt-lib. + This file is part of the AVR-Crypto-Lib. Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) This program is free software: you can redistribute it and/or modify @@ -29,7 +29,6 @@ #include #include "nessie_bc_test.h" #include "nessie_common.h" -#include "uart.h" nessie_bc_ctx_t nessie_bc_ctx; @@ -63,12 +62,14 @@ void nessie_bc_enc(uint8_t* key, uint8_t* pt){ memcpy(buffer, pt, nessie_bc_ctx.blocksize_B); for(i=0; i<100; ++i){ nessie_bc_ctx.cipher_enc(buffer, ctx); + NESSIE_SEND_ALIVE_A(i); } nessie_print_item("Iterated 100 times", buffer, nessie_bc_ctx.blocksize_B); #ifndef NESSIE_NO1KTEST /* 1000 times test, we use the 100 precedig steps to fasten things a bit */ for(; i<1000; ++i){ nessie_bc_ctx.cipher_enc(buffer, ctx); + NESSIE_SEND_ALIVE_A(i); } nessie_print_item("Iterated 1000 times", buffer, nessie_bc_ctx.blocksize_B); #endif