I\'m currently writing a network TCP server using SSL. In production, we\'ll finally require clients to authenticate with a certificate.
In order to revoke certifica
Is OCSP OK for you?
bellow code enables OCSP for me:
// for debugging:
System.setProperty("javax.net.debug", "all");
System.setProperty("java.security.debug", "all");
System.setProperty("com.sun.net.ssl.checkRevocation", "true");
Security.setProperty("ocsp.enable", "true");
failed on CRL for errors like: How to check revocation status of X509Certificate chain using JAVA?