aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/tls')
-rw-r--r--src/lib/tls/tls_ciphersuite.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/tls/tls_ciphersuite.cpp b/src/lib/tls/tls_ciphersuite.cpp
index 3c29c3c2b..a15f936be 100644
--- a/src/lib/tls/tls_ciphersuite.cpp
+++ b/src/lib/tls/tls_ciphersuite.cpp
@@ -37,9 +37,7 @@ bool Ciphersuite::ecc_ciphersuite() const
bool Ciphersuite::cbc_ciphersuite() const
{
- return (cipher_algo() == "3DES" || cipher_algo() == "SEED" ||
- cipher_algo() == "AES-128" || cipher_algo() == "AES-256" ||
- cipher_algo() == "Camellia-128" || cipher_algo() == "Camellia-256");
+ return (mac_algo() != "AEAD");
}
Ciphersuite Ciphersuite::by_id(u16bit suite)