X-Git-Url: https://git.cryptolib.org/?p=arm-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fmain-groestl-test.c;h=5720b5274025df3011d2ef5dffc5fb9e52f3d31e;hp=3ed24091d53470794ba2e36462787195a788028d;hb=fb928c1c4c392b9e987631f84f1027af94e05beb;hpb=e1db57c69472f52cf2405ef4eb22f085a868eeeb diff --git a/test_src/main-groestl-test.c b/test_src/main-groestl-test.c index 3ed2409..5720b52 100644 --- a/test_src/main-groestl-test.c +++ b/test_src/main-groestl-test.c @@ -69,19 +69,19 @@ const hfdesc_t* algolist[] = { void testrun_nessie_groestl(void){ hfal_nessie_multiple(algolist); } -void groestl224_test(void* msg, uint32_t length_b){ +void groestl224_test(const void* msg, uint32_t length_b){ hfal_test(&groestl224_desc, msg, length_b); } -void groestl256_test(void* msg, uint32_t length_b){ +void groestl256_test(const void* msg, uint32_t length_b){ hfal_test(&groestl256_desc, msg, length_b); } -void groestl384_test(void* msg, uint32_t length_b){ +void groestl384_test(const void* msg, uint32_t length_b){ hfal_test(&groestl384_desc, msg, length_b); } -void groestl512_test(void* msg, uint32_t length_b){ +void groestl512_test(const void* msg, uint32_t length_b){ hfal_test(&groestl512_desc, msg, length_b); }