X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-present-test.c;h=799d4687baf3d25f5515c8069f0a319bb9a4547a;hb=1f6be6ce98d01772fbb1f4d5205a13bea896a1f1;hp=bd20b1e2820af8b5d3767fb7b8f16aa4ab29b09a;hpb=44bd9d38e15d4b03486f4cf52dd9bbf2f97e6e17;p=avr-crypto-lib.git diff --git a/test_src/main-present-test.c b/test_src/main-present-test.c index bd20b1e..799d468 100644 --- a/test_src/main-present-test.c +++ b/test_src/main-present-test.c @@ -1,7 +1,7 @@ /* main-present-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 @@ -31,9 +31,9 @@ #include "bcal_present80.h" #include "bcal_present128.h" -char* algo_name = "Present"; +char *algo_name = "Present"; -const bcdesc_t* const algolist[] PROGMEM = { +const bcdesc_t *const algolist[] PROGMEM = { (bcdesc_t*)&present80_desc, (bcdesc_t*)&present128_desc, NULL @@ -45,7 +45,7 @@ void testrun_nessie_present(void){ bcal_nessie_multiple(algolist); } -void testrun_selfenc(uint8_t* key, uint8_t* buffer){ +void testrun_selfenc(uint8_t *key, uint8_t *buffer){ present80_ctx_t ctx; cli_putstr_P(PSTR("\r\nkey : ")); @@ -62,7 +62,7 @@ void testrun_selfenc(uint8_t* key, uint8_t* buffer){ cli_putstr_P(PSTR("\r\n")); } -void testrun_selfenc_128(uint8_t* key, uint8_t* buffer){ +void testrun_selfenc_128(uint8_t *key, uint8_t *buffer){ present128_ctx_t ctx; cli_putstr_P(PSTR("\r\nkey : ")); @@ -78,7 +78,7 @@ void testrun_selfenc_128(uint8_t* key, uint8_t* buffer){ cli_hexdump(buffer, 8); cli_putstr_P(PSTR("\r\n")); } -// void present_key_test(const uint8_t* key); +// void present_key_test(const uint8_t *key); void testrun_self_present(void){