X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fmain-keccak-test.c;h=9767ccc3c2f43bf9f35fcb88cc2346f5163f318f;hp=501eb4b28e72234fafac0d94aa6698378f5c462b;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=a45c328791dc391e6432051ee0c7972ef7fd8d9a diff --git a/test_src/main-keccak-test.c b/test_src/main-keccak-test.c index 501eb4b..9767ccc 100644 --- a/test_src/main-keccak-test.c +++ b/test_src/main-keccak-test.c @@ -1,7 +1,7 @@ /* main-keccak-test.c */ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -32,10 +32,10 @@ #include "hfal-performance.h" #include "hfal-test.h" -char* algo_name = "Keccak"; +char *algo_name = "Keccak"; -const hfdesc_t* const algolist[] PROGMEM = { +const hfdesc_t *const algolist[] PROGMEM = { (hfdesc_t*)&keccak224_desc, (hfdesc_t*)&keccak256_desc, (hfdesc_t*)&keccak384_desc, @@ -53,7 +53,7 @@ void test_256(void){ keccak_ctx_t ctx; keccak256_init(&ctx); keccak_nextBlock(&ctx, null); - // keccak_lastBlock(&ctx, data, 29); + keccak_lastBlock(&ctx, null, 29); keccak256_ctx2hash(hash, &ctx); cli_putstr_P(PSTR("\r\n testhash: ")); cli_hexdump(hash, 32); @@ -92,7 +92,7 @@ const cmdlist_entry_t cmdlist[] PROGMEM = { { NULL, NULL, NULL } }; -int main (void){ +int main(void){ main_setup(); shavs_algolist=(hfdesc_t**)algolist;