1 Reply Latest reply on May 6, 2015 5:22 AM by sanjeev.gour

    Which TLS version is supported in AS 7.1.1?

    sanjeev.gour

      Hello-

       

      I wanted to understand which version of TLS is supported on AS 7.1.1? On stackoverflow I see that it supports 1.1 and 1.2 with JDK 1.7. Where can I look at to know which version is in use currently and how do I get to the current version of TLS configured?

       

      Thanks in advance.

      Sanjeev.

        • 1. Re: Which TLS version is supported in AS 7.1.1?
          sanjeev.gour

          We figure that the configuration can be done in the following way-

           

          <subsystem xmlns="urn:jboss:domain:web:1.1" default-virtual-server="default-host" native="false">

            <connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true">

            <ssl name="https" password="password" certificate-key-file="pathtokeystore" protocol="TLSv1,TLSv1.1,TLSv1.2" keystore-type="jks"/>

            </connector>

          ....

          </subsystem>

           

          Does it enforce TLS v1.2 usage?