From 4a9610bffede9b709453d3200e1e15b35beb82b8 Mon Sep 17 00:00:00 2001 From: Matthias Schulz Date: Thu, 8 Feb 2024 18:39:17 +0100 Subject: [PATCH] Remove comments referencing private defines. Signed-off-by: Matthias Schulz --- include/mbedtls/gcm.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/mbedtls/gcm.h b/include/mbedtls/gcm.h index 2f9a2cd7b..745cd28aa 100644 --- a/include/mbedtls/gcm.h +++ b/include/mbedtls/gcm.h @@ -70,11 +70,7 @@ typedef struct mbedtls_gcm_context { unsigned char MBEDTLS_PRIVATE(mode); /*!< The operation to perform: #MBEDTLS_GCM_ENCRYPT or #MBEDTLS_GCM_DECRYPT. */ - unsigned char MBEDTLS_PRIVATE(acceleration); /*!< The acceleration to use: - #MBEDTLS_GCM_ACC_SMALLTABLE, - #MBEDTLS_GCM_ACC_LARGETABLE, - #MBEDTLS_GCM_ACC_AESNI, - #MBEDTLS_GCM_ACC_AESCE */ + unsigned char MBEDTLS_PRIVATE(acceleration); /*!< The acceleration to use. */ } mbedtls_gcm_context;