Re: TLS 1.3

2021-10-15 Thread Robbie Gemmell
To add to the below, Java 11+ has TLS 1.3 enabled by default, e.g for the generic "TLS" protocol name, so unless something specifically restricts the enabledProtocols then it will be enabled. I believe more recent Java 8 JVMs have it enabled by default on the server side, but not the c

Re: TLS 1.3

2021-10-14 Thread Justin Bertram
Whether or not TLS 1.3 works for you really depends on the JVM you're using. The "enabledProtocols" settings are passed through to the underlying instance of javax.net.ssl.SSLEngine provided by the JVM [1]. Justin [1] https://docs.oracle.com/en/java/javase/11/docs/api/java.base/jav

TLS 1.3

2021-10-14 Thread martin naskovski
Hello - can I configure ActiveMQ 5.6.12 with TLS 1.3? I've a requirement to support TLS 1.3 in addition to TLS 1.2. The documentation says to add the protocol like so: transport.enabledProtocols=TLSv1.2,TLSv1.3 socket.enabledProtocols=TLSv1.2,TLSv1.3 but I am paranoid if this is a tested