X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fmain-rc5-test.c;fp=test_src%2Fmain-rc5-test.c;h=23e183c04da24c67645172852a0197504457129e;hp=827a966dc5ffd5552a57e8038798b22af92626af;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/test_src/main-rc5-test.c b/test_src/main-rc5-test.c index 827a966..23e183c 100644 --- a/test_src/main-rc5-test.c +++ b/test_src/main-rc5-test.c @@ -30,9 +30,9 @@ #include "bcal_rc5.h" #define RC5_ROUNDS 12 -char* algo_name = "RC5-32/12/16"; +char *algo_name = "RC5-32/12/16"; -const bcdesc_t* const algolist[] PROGMEM = { +const bcdesc_t *const algolist[] PROGMEM = { (bcdesc_t*)&rc5_desc, NULL }; @@ -40,7 +40,7 @@ const bcdesc_t* const algolist[] PROGMEM = { /***************************************************************************** * additional validation-functions * *****************************************************************************/ -void rc5_genctx_dummy(uint8_t* key, uint16_t keysize_b, void* ctx){ +void rc5_genctx_dummy(uint8_t *key, uint16_t keysize_b, void *ctx){ rc5_init(key, keysize_b, RC5_ROUNDS, ctx); }