X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-threefish-test.c;h=af8544655f3ebea561f0d9221303d19f896ddada;hb=1f6be6ce98d01772fbb1f4d5205a13bea896a1f1;hp=a1e0a63596d92b326bb2f476f58e4de7d2e30390;hpb=a45c328791dc391e6432051ee0c7972ef7fd8d9a;p=avr-crypto-lib.git diff --git a/test_src/main-threefish-test.c b/test_src/main-threefish-test.c index a1e0a63..af85446 100644 --- a/test_src/main-threefish-test.c +++ b/test_src/main-threefish-test.c @@ -1,7 +1,7 @@ /* main-threefish-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,9 +32,9 @@ #include "bcal_threefish512.h" #include "bcal_threefish1024.h" -char* algo_name = "Threefish"; +char *algo_name = "Threefish"; -const bcdesc_t* const algolist[] PROGMEM = { +const bcdesc_t *const algolist[] PROGMEM = { (bcdesc_t*)&threefish256_desc, (bcdesc_t*)&threefish512_desc, (bcdesc_t*)&threefish1024_desc, @@ -44,7 +44,7 @@ const bcdesc_t* const algolist[] PROGMEM = { * additional validation-functions * *****************************************************************************/ -void threefish256_dump(threefish256_ctx_t* ctx){ +void threefish256_dump(threefish256_ctx_t *ctx){ uint8_t i; cli_putstr_P(PSTR("\r\n=== ctx dump (256) === \r\n k: ")); for(i=0; i<5; ++i){