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 a50791d commit 8e18c5cCopy full SHA for 8e18c5c
modules/mbedtls/Kconfig.tls-generic
@@ -458,4 +458,9 @@ config MBEDTLS_PSA_CRYPTO_C
458
depends on MBEDTLS_CTR_DRBG_ENABLED || MBEDTLS_HMAC_DRBG_ENABLED
459
default y if UOSCORE || UEDHOC
460
461
+config MBEDTLS_LMS
462
+ bool "Support LMS signature schemes"
463
+ depends on MBEDTLS_PSA_CRYPTO_C
464
+ depends on MBEDTLS_HASH_SHA256_ENABLED
465
+
466
endmenu
modules/mbedtls/configs/config-tls-generic.h
@@ -28,6 +28,11 @@
28
#define MBEDTLS_HAVE_ASM
29
#endif
30
31
+#if defined(CONFIG_MBEDTLS_LMS)
32
+#define MBEDTLS_LMS_C
33
+#define PSA_WANT_ALG_SHA_256 1
34
+#endif
35
36
#if defined(CONFIG_MBEDTLS_HAVE_TIME_DATE)
37
#define MBEDTLS_HAVE_TIME
38
#define MBEDTLS_HAVE_TIME_DATE
0 commit comments