aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls/tls_ciphersuite.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/tls/tls_ciphersuite.cpp')
-rw-r--r--src/lib/tls/tls_ciphersuite.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/lib/tls/tls_ciphersuite.cpp b/src/lib/tls/tls_ciphersuite.cpp
index c912965c6..b2ff2476b 100644
--- a/src/lib/tls/tls_ciphersuite.cpp
+++ b/src/lib/tls/tls_ciphersuite.cpp
@@ -134,7 +134,7 @@ bool Ciphersuite::valid() const
#endif
#if !defined(BOTAN_HAS_AEAD_OCB)
- if(mode == "OCB")
+ if(mode == "OCB(12)" || mode == "OCB")
return false;
#endif
}
@@ -233,7 +233,13 @@ std::string Ciphersuite::to_string() const
else if(cipher_algo().find("Camellia") == 0)
out << "CAMELLIA_" << std::to_string(8*cipher_keylen());
else
- out << replace_chars(cipher_algo(), {'-', '/'}, '_');
+ {
+ if(cipher_algo().find("OCB(12)") != std::string::npos)
+ out << replace_chars(cipher_algo().substr(0, cipher_algo().size() - 4),
+ {'-', '/'}, '_');
+ else
+ out << replace_chars(cipher_algo(), {'-', '/'}, '_');
+ }
if(cipher_algo().find("/") != std::string::npos)
out << "_"; // some explicit mode already included