X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-present-test.c;h=226fcf7a4d62c351d9f34be5854503d7791c3286;hb=2c909fca2a13cd76a526515bda5d0292483d7a55;hp=3a08c120fe0efa2b8522eec8966c3f0a7807a92f;hpb=27f4804c185ae24b3b6367bb2fdb898d6692d0f6;p=avr-crypto-lib.git diff --git a/test_src/main-present-test.c b/test_src/main-present-test.c index 3a08c12..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){ @@ -141,9 +141,6 @@ const cmdlist_entry_t cmdlist[] PROGMEM = { int main(void) { main_setup(); - shavs_algolist=(hfdesc_t**)algolist; - shavs_algo=(hfdesc_t*)&sha256_desc; - for(;;){ welcome_msg(algo_name); cmd_interface(cmdlist);