From 43aa905d1e0c5c3e8fbec98adc496bcd7d46b51f Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Wed, 4 Mar 2020 15:50:54 +0100 Subject: [PATCH] DHM functions are not part of x509 In the old days, key parsing was part of x509, but these days it's part of crypto. --- include/mbedtls/dhm.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/mbedtls/dhm.h b/include/mbedtls/dhm.h index 9890e0ce5..6dcfadd82 100644 --- a/include/mbedtls/dhm.h +++ b/include/mbedtls/dhm.h @@ -298,7 +298,6 @@ int mbedtls_dhm_calc_secret( mbedtls_dhm_context *ctx, void mbedtls_dhm_free( mbedtls_dhm_context *ctx ); #if defined(MBEDTLS_ASN1_PARSE_C) -/** \ingroup x509_module */ /** * \brief This function parses DHM parameters in PEM or DER format. * @@ -317,7 +316,6 @@ int mbedtls_dhm_parse_dhm( mbedtls_dhm_context *dhm, const unsigned char *dhmin, size_t dhminlen ); #if defined(MBEDTLS_FS_IO) -/** \ingroup x509_module */ /** * \brief This function loads and parses DHM parameters from a file. *