From 5b4ad8690ec762fa34201865d941dc240b65e274 Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Thu, 23 Apr 2026 15:18:34 -0600 Subject: [PATCH] update function comments --- wolfcrypt/src/wc_xmss.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wolfcrypt/src/wc_xmss.c b/wolfcrypt/src/wc_xmss.c index f8a5ed50f1..f48922897f 100644 --- a/wolfcrypt/src/wc_xmss.c +++ b/wolfcrypt/src/wc_xmss.c @@ -124,6 +124,7 @@ static void wc_xmss_digest_free(XmssState* state) * * @param [in, out] state XMSS/MT state including digest and parameters. * @param [in] params Parameters for key. + * @param [in] heap Dynamic memory hint. * @return 0 on success. * @return NOT_COMPILED_IN when digest algorithm not supported. * @return Other negative when digest algorithm initialization failed. @@ -810,7 +811,7 @@ static WC_INLINE int wc_xmsskey_signupdate(XmssKey* key, byte* sig, * Call this before setting the parms of an XMSS key. * * @param [in] key The XMSS key to init. - * @param [in] heap Unused. + * @param [in] heap Dynamic memory hint used by subsequent allocations. * @param [in] devId Unused. * * @return 0 on success.