We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9c7c8d commit 7071a1fCopy full SHA for 7071a1f
config/examples/sim-ml-dsa.config
@@ -48,7 +48,9 @@ IMAGE_HEADER_SIZE?=8192
48
# Category 5:
49
# ML_DSA_LEVEL=5
50
# IMAGE_SIGNATURE_SIZE=4627
51
-# IMAGE_HEADER_SIZE?=9254
+# IMAGE_HEADER_SIZE?=12288
52
+# This example needsd larger sector size.
53
+# WOLFBOOT_SECTOR_SIZE=0x3000
54
#
55
56
# sizes should be multiple of system page size
tools/keytools/sign.c
@@ -2433,6 +2433,11 @@ int main(int argc, char** argv)
2433
else if (CMD.sign == SIGN_XMSS) {
2434
#ifdef WOLFSSL_HAVE_XMSS
2435
wc_XmssKey_Free(&key.xmss);
2436
+#endif
2437
+ }
2438
+ else if (CMD.sign == SIGN_ML_DSA) {
2439
+#ifdef WOLFSSL_WC_DILITHIUM
2440
+ wc_MlDsaKey_Free(&key.ml_dsa);
2441
#endif
2442
}
2443
return ret;
0 commit comments