Skip to content

Commit 2e009fe

Browse files
author
Hanno Becker
committed
Fix style in definition of mbedtls_cipher_mode_t
1 parent 4ba0901 commit 2e009fe

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

include/mbedtls/cipher.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -179,16 +179,16 @@ typedef enum {
179179

180180
/** Supported cipher modes. */
181181
typedef enum {
182-
MBEDTLS_MODE_NONE = 0, /**< None. */
183-
MBEDTLS_MODE_ECB, /**< The ECB cipher mode. */
184-
MBEDTLS_MODE_CBC, /**< The CBC cipher mode. */
185-
MBEDTLS_MODE_CFB, /**< The CFB cipher mode. */
186-
MBEDTLS_MODE_OFB, /**< The OFB cipher mode. */
187-
MBEDTLS_MODE_CTR, /**< The CTR cipher mode. */
188-
MBEDTLS_MODE_GCM, /**< The GCM cipher mode. */
189-
MBEDTLS_MODE_STREAM, /**< The stream cipher mode. */
190-
MBEDTLS_MODE_CCM, /**< The CCM cipher mode. */
191-
MBEDTLS_MODE_XTS, /**< The XTS cipher mode. */
182+
MBEDTLS_MODE_NONE = 0, /**< None. */
183+
MBEDTLS_MODE_ECB, /**< The ECB cipher mode. */
184+
MBEDTLS_MODE_CBC, /**< The CBC cipher mode. */
185+
MBEDTLS_MODE_CFB, /**< The CFB cipher mode. */
186+
MBEDTLS_MODE_OFB, /**< The OFB cipher mode. */
187+
MBEDTLS_MODE_CTR, /**< The CTR cipher mode. */
188+
MBEDTLS_MODE_GCM, /**< The GCM cipher mode. */
189+
MBEDTLS_MODE_STREAM, /**< The stream cipher mode. */
190+
MBEDTLS_MODE_CCM, /**< The CCM cipher mode. */
191+
MBEDTLS_MODE_XTS, /**< The XTS cipher mode. */
192192
MBEDTLS_MODE_CHACHAPOLY, /**< The ChaCha-Poly cipher mode. */
193193
} mbedtls_cipher_mode_t;
194194

0 commit comments

Comments
 (0)