My utility is deployed to Tomcat 6 with Java 6, I want to restrict the use of SSL to TLSv1.1 only . According to the Java 6 documentation, JCE does not support TLSv1.1 while Java 7 is running.
Updating my version of Java is unacceptable. Are there any providers that implement the TLSv1.1 protocol that I can integrate into my java?
Since this is a production system, I am looking for a quick and safe fix. I thought in front of the application server with the Apache web server on the same host (which supports TLSv1.1 via openssl) and uses it as a proxy server. Unfortunately, my physical resources are low.
Any other ideas are welcome. Thank you
source
share