aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls
diff options
context:
space:
mode:
authorRenĂ© Korthaus <[email protected]>2019-11-15 10:22:54 +0100
committerRenĂ© Korthaus <[email protected]>2019-11-15 10:22:54 +0100
commit4fca820cc70826451881dbe5410b17efd9ceee96 (patch)
treefe61ad0617848e67433cb399ba2a27c3d2c983a6 /src/lib/tls
parent22eacdd63eda0b3749409edb3e5e3c3bcf8ec7f0 (diff)
Prefer CCM over CBC ciphersuites
Diffstat (limited to 'src/lib/tls')
-rw-r--r--src/lib/tls/tls_policy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tls/tls_policy.h b/src/lib/tls/tls_policy.h
index c4ddcd65c..4fbbd7545 100644
--- a/src/lib/tls/tls_policy.h
+++ b/src/lib/tls/tls_policy.h
@@ -420,7 +420,7 @@ class BOTAN_PUBLIC_API(2,0) BSI_TR_02102_2 : public Policy
public:
std::vector<std::string> allowed_ciphers() const override
{
- return std::vector<std::string>({"AES-256/GCM", "AES-128/GCM", "AES-256", "AES-128", "AES-256/CCM", "AES-128/CCM"});
+ return std::vector<std::string>({"AES-256/GCM", "AES-128/GCM", "AES-256/CCM", "AES-128/CCM", "AES-256", "AES-128"});
}
std::vector<std::string> allowed_signature_hashes() const override