Fixup code comments in XMSS and LMS

This commit is contained in:
Andrew Hutchings
2026-03-20 10:22:46 +00:00
parent 4bd0658ce5
commit dca9951355
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -95,8 +95,8 @@
#include <wolfssl/wolfcrypt/lms.h>
#include <wolfssl/wolfcrypt/sha256.h>
/* When hash struct internals are not accessible (hardware SHA acceleration),
* fall back to full hash API calls. */
/* When raw hash access APIs are disabled or unavailable (WOLFSSL_NO_HASH_RAW),
* fall back to using the full hash API calls. */
#if defined(WOLFSSL_NO_HASH_RAW) && !defined(WC_LMS_FULL_HASH)
#define WC_LMS_FULL_HASH
#endif
+2 -2
View File
@@ -34,8 +34,8 @@
#include <wolfssl/wolfcrypt/sha512.h>
#include <wolfssl/wolfcrypt/sha3.h>
/* When hash struct internals are not accessible (hardware SHA acceleration),
* fall back to full hash API calls. */
/* When raw hash access APIs are disabled or unavailable (WOLFSSL_NO_HASH_RAW),
* fall back to using the full hash API calls. */
#if defined(WOLFSSL_NO_HASH_RAW) && !defined(WC_XMSS_FULL_HASH)
#define WC_XMSS_FULL_HASH
#endif