Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions wolfcrypt/benchmark/benchmark.c
Original file line number Diff line number Diff line change
Expand Up @@ -15474,9 +15474,9 @@ void bench_dilithiumKeySign(byte level)
}
#endif

ret = wc_dilithium_init(key);
ret = wc_dilithium_init_ex(key, HEAP_HINT, devId);
if (ret != 0) {
printf("wc_dilithium_init failed %d\n", ret);
printf("wc_dilithium_init_ex failed %d\n", ret);
goto out;
}

Expand Down
Loading