Commit 4ff0231 1 parent b43d5e7 commit 4ff0231 Copy full SHA for 4ff0231
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -83,16 +83,16 @@ extern "C" {
83
83
/**
84
84
* \brief Supported cipher types.
85
85
*
86
- * \warning RC4 and DES are considered weak ciphers and their use
87
- * constitutes a security risk. Arm recommends considering stronger
86
+ * \warning RC4 and DES/3DES are considered weak ciphers and their use
87
+ * constitutes a security risk. We recommend considering stronger
88
88
* ciphers instead.
89
89
*/
90
90
typedef enum {
91
91
MBEDTLS_CIPHER_ID_NONE = 0 , /**< Placeholder to mark the end of cipher ID lists. */
92
92
MBEDTLS_CIPHER_ID_NULL , /**< The identity cipher, treated as a stream cipher. */
93
93
MBEDTLS_CIPHER_ID_AES , /**< The AES cipher. */
94
- MBEDTLS_CIPHER_ID_DES , /**< The DES cipher. */
95
- MBEDTLS_CIPHER_ID_3DES , /**< The Triple DES cipher. */
94
+ MBEDTLS_CIPHER_ID_DES , /**< The DES cipher. \warning DES is considered weak. */
95
+ MBEDTLS_CIPHER_ID_3DES , /**< The Triple DES cipher. \warning 3DES is considered weak. */
96
96
MBEDTLS_CIPHER_ID_CAMELLIA , /**< The Camellia cipher. */
97
97
MBEDTLS_CIPHER_ID_BLOWFISH , /**< The Blowfish cipher. */
98
98
MBEDTLS_CIPHER_ID_ARC4 , /**< The RC4 cipher. */
You can’t perform that action at this time.
0 commit comments