joinus-java

How to disable weak cipher suites in Java

If you want to set up used cipher suites in your Java application, you can do it by property jdk.tls.disabledAlgorithms for TLS ciphers and jdk.certpath.disabledAlgorithms for SSL certificates, in security policy file java.security. This file is located in {APP_HOME}/jre/lib/security folder. If you want to set which TLS will be used, you can do it in the same […]

Read More