We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 491e70b commit 75d6307Copy full SHA for 75d6307
1 file changed
src/internal.c
@@ -8906,6 +8906,10 @@ void FreeHandshakeResources(WOLFSSL* ssl)
8906
FreeKey(ssl, DYNAMIC_TYPE_FALCON, (void**)&ssl->peerFalconKey);
8907
ssl->peerFalconKeyPresent = 0;
8908
#endif /* HAVE_FALCON */
8909
+#if defined(HAVE_DILITHIUM)
8910
+ FreeKey(ssl, DYNAMIC_TYPE_DILITHIUM, (void**)&ssl->peerDilithiumKey);
8911
+ ssl->peerDilithiumKeyPresent = 0;
8912
+#endif /* HAVE_DILITHIUM */
8913
}
8914
8915
#ifdef HAVE_ECC
0 commit comments