Skip to content

Commit 5c82757

Browse files
authored
Merge pull request #8809 from douzzer/20250528-fix-mldsa_nosign
20250528-fix-mldsa_nosign
2 parents 8ea0105 + b9ef6c5 commit 5c82757

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

.wolfssl_known_macro_extras

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,6 @@ WOLFSSL_DILITHIUM_SIGN_CHECK_Y
655655
WOLFSSL_DILITHIUM_SIGN_SMALL_MEM_PRECALC
656656
WOLFSSL_DILITHIUM_SIGN_SMALL_MEM_PRECALC_A
657657
WOLFSSL_DILITHIUM_SMALL_MEM_POLY64
658-
WOLFSSL_DILITHIUM_VERIFY_NO_MALLOC
659658
WOLFSSL_DILITHIUM_VERIFY_SMALL_MEM
660659
WOLFSSL_DISABLE_EARLY_SANITY_CHECKS
661660
WOLFSSL_DTLS_DISALLOW_FUTURE

wolfcrypt/test/test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46914,7 +46914,7 @@ static wc_test_ret_t test_dilithium_decode_level(const byte* rawKey,
4691446914
key = (dilithium_key *)XMALLOC(sizeof(*key), HEAP_HINT,
4691546915
DYNAMIC_TYPE_TMP_BUFFER);
4691646916
if (der == NULL || key == NULL) {
46917-
return MEMORY_E;
46917+
ret = MEMORY_E;
4691846918
}
4691946919
#endif
4692046920

0 commit comments

Comments
 (0)