Java Security – Disable TLS Certificate Revocation Checks for All Users

certificatejavaSecuritytls

Apologies if this has been asked and I am a bit of newbie to Java.

We are currently running JRE 8 Update 211 32 bit (I know this is not the latest version) running in Windows 10.

I am currently trying to find the property key (definition) to disable TLS certificate revocation checks on to define in Deployment.Properties file.

I have managed to find part of it which is:

deployment.security.revocation.check=NO_CHECK
deployment.security.revocation.check.locked

Which did the following:

Java Control Panel

As you can see the from the screenshot I managed to implement the setting for side code certificate revocation but unable to find the code for TLS certificate revocation.

Best Answer

From the post Java control panel setting these settings seem to be:

deployment.security.tls.revocation.check=NO_CHECK
deployment.security.tls.revocation.check. Locked
Related Question