From 7a366f7f97a5b37dbc2fb94e27a62cf1432779d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Tue, 20 Apr 2021 13:23:03 +0200 Subject: [PATCH] PSA PBKDF2: add config option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Manuel Pégourié-Gonnard --- include/psa/crypto_config.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/psa/crypto_config.h b/include/psa/crypto_config.h index 736d9abe08..03aa86ccd6 100644 --- a/include/psa/crypto_config.h +++ b/include/psa/crypto_config.h @@ -72,6 +72,9 @@ #define PSA_WANT_ALG_MD4 1 #define PSA_WANT_ALG_MD5 1 #define PSA_WANT_ALG_OFB 1 +/* PBKDF2-HMAC is not yet support via the PSA API in Mbed TLS. + * Note: when adding support, also adjust include/mbedtls/config_psa.h */ +//#define PSA_WANT_ALG_PBKDF2_HMAC 1 #define PSA_WANT_ALG_RIPEMD160 1 #define PSA_WANT_ALG_RSA_OAEP 1 #define PSA_WANT_ALG_RSA_PKCS1V15_CRYPT 1