X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-camellia-test.c;h=4eb03959048136febf3596385972aa4b078ceda8;hb=1f6be6ce98d01772fbb1f4d5205a13bea896a1f1;hp=39702db4012b67576c41f9f3ac11a22f5f02d22b;hpb=a45c328791dc391e6432051ee0c7972ef7fd8d9a;p=avr-crypto-lib.git diff --git a/test_src/main-camellia-test.c b/test_src/main-camellia-test.c index 39702db..4eb0395 100644 --- a/test_src/main-camellia-test.c +++ b/test_src/main-camellia-test.c @@ -1,7 +1,7 @@ /* main-camellia-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 @@ -29,9 +29,9 @@ #include "bcal-performance.h" #include "bcal-nessie.h" -char* algo_name = "Camellia"; +char *algo_name = "Camellia"; -const bcdesc_t* const algolist[] PROGMEM = { +const bcdesc_t *const algolist[] PROGMEM = { (bcdesc_t*)&camellia128_desc, NULL }; @@ -61,7 +61,7 @@ const uint8_t test_keys[] PROGMEM = { 0xEF, 0xCD, 0xAB, 0x89, 0x67, 0x45, 0x23, 0x01, 0x10, 0x32, 0x54, 0x76, 0x98, 0xBA, 0xDC, 0xFE }; -void hexdump128(void* data){ +void hexdump128(void *data){ uint8_t i; for(i=0; i<16; ++i){ cli_hexdump(data, 1);