We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MBEDTLS_HKDF_C
1 parent 6784ed8 commit 3247a1dCopy full SHA for 3247a1d
modules/mbedtls/Kconfig.tls-generic
@@ -118,6 +118,9 @@ config MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED
118
bool "ECJPAKE based ciphersuite modes"
119
depends on MBEDTLS_ECJPAKE_C
120
121
+config MBEDTLS_HKDF_C
122
+ bool "HMAC-based Extract-and-Expand Key Derivation Function"
123
+
124
comment "Elliptic curve libraries"
125
126
config MBEDTLS_ECDH_C
modules/mbedtls/configs/config-tls-generic.h
@@ -138,6 +138,10 @@
138
#define MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED
139
#endif
140
141
+#if defined(CONFIG_MBEDTLS_HKDF_C)
142
+#define MBEDTLS_HKDF_C
143
+#endif
144
145
/* Supported cipher modes */
146
147
#if defined(CONFIG_MBEDTLS_CIPHER_AES_ENABLED)
0 commit comments