X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fmain-groestl-test.c;h=5720b5274025df3011d2ef5dffc5fb9e52f3d31e;hb=HEAD;hp=0a0a9445eed65f71d7d9bc39fa75cf3e8e5f8c64;hpb=d70d1d77bab1a5f5278227d674bc59da0378fe15;p=arm-crypto-lib.git diff --git a/test_src/main-groestl-test.c b/test_src/main-groestl-test.c index 0a0a944..5720b52 100644 --- a/test_src/main-groestl-test.c +++ b/test_src/main-groestl-test.c @@ -34,14 +34,14 @@ #include "shavs.h" #include "nessie_hash_test.h" #include "performance_test.h" -#include "hfal/hfal-nessie.h" -#include "hfal/hfal-performance.h" -#include "hfal/hfal-test.h" +#include "hfal-nessie.h" +#include "hfal-performance.h" +#include "hfal-test.h" #include "groestl_small.h" #include "groestl_large.h" -#include "hfal/hfal_groestl_small.h" -#include "hfal/hfal_groestl_large.h" +#include "hfal_groestl_small.h" +#include "hfal_groestl_large.h" const char* algo_name = "Groestl"; @@ -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); }