mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 20:15:38 +01:00
Fix style in definition of mbedtls_cipher_mode_t
This commit is contained in:
parent
6767cca100
commit
e5a0450809
@ -179,16 +179,16 @@ typedef enum {
|
|||||||
|
|
||||||
/** Supported cipher modes. */
|
/** Supported cipher modes. */
|
||||||
typedef enum {
|
typedef enum {
|
||||||
MBEDTLS_MODE_NONE = 0, /**< None. */
|
MBEDTLS_MODE_NONE = 0, /**< None. */
|
||||||
MBEDTLS_MODE_ECB, /**< The ECB cipher mode. */
|
MBEDTLS_MODE_ECB, /**< The ECB cipher mode. */
|
||||||
MBEDTLS_MODE_CBC, /**< The CBC cipher mode. */
|
MBEDTLS_MODE_CBC, /**< The CBC cipher mode. */
|
||||||
MBEDTLS_MODE_CFB, /**< The CFB cipher mode. */
|
MBEDTLS_MODE_CFB, /**< The CFB cipher mode. */
|
||||||
MBEDTLS_MODE_OFB, /**< The OFB cipher mode. */
|
MBEDTLS_MODE_OFB, /**< The OFB cipher mode. */
|
||||||
MBEDTLS_MODE_CTR, /**< The CTR cipher mode. */
|
MBEDTLS_MODE_CTR, /**< The CTR cipher mode. */
|
||||||
MBEDTLS_MODE_GCM, /**< The GCM cipher mode. */
|
MBEDTLS_MODE_GCM, /**< The GCM cipher mode. */
|
||||||
MBEDTLS_MODE_STREAM, /**< The stream cipher mode. */
|
MBEDTLS_MODE_STREAM, /**< The stream cipher mode. */
|
||||||
MBEDTLS_MODE_CCM, /**< The CCM cipher mode. */
|
MBEDTLS_MODE_CCM, /**< The CCM cipher mode. */
|
||||||
MBEDTLS_MODE_XTS, /**< The XTS cipher mode. */
|
MBEDTLS_MODE_XTS, /**< The XTS cipher mode. */
|
||||||
MBEDTLS_MODE_CHACHAPOLY, /**< The ChaCha-Poly cipher mode. */
|
MBEDTLS_MODE_CHACHAPOLY, /**< The ChaCha-Poly cipher mode. */
|
||||||
} mbedtls_cipher_mode_t;
|
} mbedtls_cipher_mode_t;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user