X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fmain-present-test.c;fp=test_src%2Fmain-present-test.c;h=226fcf7a4d62c351d9f34be5854503d7791c3286;hp=bd20b1e2820af8b5d3767fb7b8f16aa4ab29b09a;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/test_src/main-present-test.c b/test_src/main-present-test.c index bd20b1e..226fcf7 100644 --- a/test_src/main-present-test.c +++ b/test_src/main-present-test.c @@ -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){