=rem #19228 make the default TLS version 1.2

TLS 1.2 should be preferred and we always have it available by virtue of requiring JDK8 for Akka 2.4.x.
See also https://blogs.oracle.com/java-platform-group/entry/java_8_will_use_tls
This commit is contained in:
Konrad Malawski 2015-12-18 11:47:19 +01:00 committed by Konrad Malawski
parent 8dbade7131
commit ea4616c281
7 changed files with 9 additions and 11 deletions

View file

@ -298,7 +298,7 @@ An example of setting up the default Netty based SSL driver as default::
key-store-password = "changeme"
key-password = "changeme"
trust-store-password = "changeme"
protocol = "TLSv1"
protocol = "TLSv1.2"
random-number-generator = "AES128CounterSecureRNG"
enabled-algorithms = [TLS_RSA_WITH_AES_128_CBC_SHA]
}