Update warnings in cipher.h
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
parent
c04515b83c
commit
23caf02c5b
1 changed files with 4 additions and 4 deletions
|
@ -71,16 +71,16 @@ extern "C" {
|
||||||
/**
|
/**
|
||||||
* \brief Supported cipher types.
|
* \brief Supported cipher types.
|
||||||
*
|
*
|
||||||
* \warning DES is considered weak cipher and its use
|
* \warning DES/3DES are considered weak ciphers and their use
|
||||||
* constitutes a security risk. Arm recommends considering stronger
|
* constitutes a security risk. We recommend considering stronger
|
||||||
* ciphers instead.
|
* ciphers instead.
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
MBEDTLS_CIPHER_ID_NONE = 0, /**< Placeholder to mark the end of cipher ID lists. */
|
MBEDTLS_CIPHER_ID_NONE = 0, /**< Placeholder to mark the end of cipher ID lists. */
|
||||||
MBEDTLS_CIPHER_ID_NULL, /**< The identity cipher, treated as a stream cipher. */
|
MBEDTLS_CIPHER_ID_NULL, /**< The identity cipher, treated as a stream cipher. */
|
||||||
MBEDTLS_CIPHER_ID_AES, /**< The AES cipher. */
|
MBEDTLS_CIPHER_ID_AES, /**< The AES cipher. */
|
||||||
MBEDTLS_CIPHER_ID_DES, /**< The DES cipher. */
|
MBEDTLS_CIPHER_ID_DES, /**< The DES cipher. \warning DES is considered weak. */
|
||||||
MBEDTLS_CIPHER_ID_3DES, /**< The Triple DES cipher. */
|
MBEDTLS_CIPHER_ID_3DES, /**< The Triple DES cipher. \warning 3DES is considered weak. */
|
||||||
MBEDTLS_CIPHER_ID_CAMELLIA, /**< The Camellia cipher. */
|
MBEDTLS_CIPHER_ID_CAMELLIA, /**< The Camellia cipher. */
|
||||||
MBEDTLS_CIPHER_ID_ARIA, /**< The Aria cipher. */
|
MBEDTLS_CIPHER_ID_ARIA, /**< The Aria cipher. */
|
||||||
MBEDTLS_CIPHER_ID_CHACHA20, /**< The ChaCha20 cipher. */
|
MBEDTLS_CIPHER_ID_CHACHA20, /**< The ChaCha20 cipher. */
|
||||||
|
|
Loading…
Reference in a new issue