mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-25 10:49:29 +00:00
Update cipher.h for OFB block mode documentation
Raises the doxygen comments for OFB to the same level as other block modes.
This commit is contained in:
parent
ad4e4938d1
commit
6873c845e8
1 changed files with 4 additions and 4 deletions
|
@ -164,9 +164,9 @@ typedef enum {
|
||||||
MBEDTLS_CIPHER_ARIA_128_CCM, /**< Aria cipher with 128-bit key and CCM mode. */
|
MBEDTLS_CIPHER_ARIA_128_CCM, /**< Aria cipher with 128-bit key and CCM mode. */
|
||||||
MBEDTLS_CIPHER_ARIA_192_CCM, /**< Aria cipher with 192-bit key and CCM mode. */
|
MBEDTLS_CIPHER_ARIA_192_CCM, /**< Aria cipher with 192-bit key and CCM mode. */
|
||||||
MBEDTLS_CIPHER_ARIA_256_CCM, /**< Aria cipher with 256-bit key and CCM mode. */
|
MBEDTLS_CIPHER_ARIA_256_CCM, /**< Aria cipher with 256-bit key and CCM mode. */
|
||||||
MBEDTLS_CIPHER_AES_128_OFB,
|
MBEDTLS_CIPHER_AES_128_OFB, /**< AES 128-bit cipher in OFB mode. */
|
||||||
MBEDTLS_CIPHER_AES_192_OFB,
|
MBEDTLS_CIPHER_AES_192_OFB, /**< AES 192-bit cipher in OFB mode. */
|
||||||
MBEDTLS_CIPHER_AES_256_OFB
|
MBEDTLS_CIPHER_AES_256_OFB, /**< AES 256-bit cipher in OFB mode. */
|
||||||
} mbedtls_cipher_type_t;
|
} mbedtls_cipher_type_t;
|
||||||
|
|
||||||
/** Supported cipher modes. */
|
/** Supported cipher modes. */
|
||||||
|
@ -175,7 +175,7 @@ typedef enum {
|
||||||
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 - unsupported. */
|
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. */
|
||||||
|
|
Loading…
Reference in a new issue