Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

20240430-xmss-analyzer-cleanups #7494

Merged
merged 1 commit into from
May 1, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions wolfcrypt/benchmark/benchmark.c
Original file line number Diff line number Diff line change
Expand Up @@ -10071,12 +10071,10 @@ static void bench_xmss_sign_verify(const char * params)

if (freeRng) {
wc_FreeRng(&rng);
freeRng = 0;
}

if (freeKey) {
wc_XmssKey_Free(&key);
freeKey = 0;
}

return;
Expand Down
2 changes: 1 addition & 1 deletion wolfcrypt/test/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -38381,7 +38381,7 @@ WOLFSSL_TEST_SUBROUTINE wc_test_ret_t xmss_test_verify_only(void)
}

if (pub_len != XMSS_SHA256_PUBLEN) {
printf("error: xmss pub len %d, expected %d\n", pub_len,
printf("error: xmss pub len %u, expected %d\n", pub_len,
XMSS_SHA256_PUBLEN);
return WC_TEST_RET_ENC_EC(pub_len);
}
Expand Down