From 7c33b0cac6801daa74c4ad258df51f26b4c67b41 Mon Sep 17 00:00:00 2001 From: Dave Rodgman Date: Fri, 10 Mar 2023 15:07:15 +0000 Subject: [PATCH] Remove pre-production warnings Signed-off-by: Dave Rodgman --- include/mbedtls/mbedtls_config.h | 6 +----- include/mbedtls/pkcs7.h | 7 +------ 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/include/mbedtls/mbedtls_config.h b/include/mbedtls/mbedtls_config.h index 7daba37400..63649f42ec 100644 --- a/include/mbedtls/mbedtls_config.h +++ b/include/mbedtls/mbedtls_config.h @@ -2862,10 +2862,6 @@ /** * \def MBEDTLS_PKCS7_C * - * This feature is a work in progress and not ready for production. Testing and - * validation is incomplete, and handling of malformed inputs may not be robust. - * The API may change. - * * Enable PKCS7 core for using PKCS7 formatted signatures. * RFC Link - https://tools.ietf.org/html/rfc2315 * @@ -2877,7 +2873,7 @@ * * This module is required for the PKCS7 parsing modules. */ -//#define MBEDTLS_PKCS7_C +#define MBEDTLS_PKCS7_C /** * \def MBEDTLS_PKCS12_C diff --git a/include/mbedtls/pkcs7.h b/include/mbedtls/pkcs7.h index 126eac4228..7f2aa9e9e5 100644 --- a/include/mbedtls/pkcs7.h +++ b/include/mbedtls/pkcs7.h @@ -22,12 +22,7 @@ */ /** - * This feature is a work in progress and not ready for production. The API may - * change. Furthermore, please note that the implementation has only been - * validated with well-formed inputs, not yet with untrusted inputs (which is - * almost always the case in practice). - * - * Note: For the time being, this implementation of the PKCS7 cryptographic + * Note: For the time being, this implementation of the PKCS #7 cryptographic * message syntax is a partial implementation of RFC 2315. * Differences include: * - The RFC specifies 6 different content types. The only type currently