How to check revocation status of X509Certificate chain using JAVA?
问题 I am having a chain of X509Certificates starting with user certificate and ending with trusted CA certificate. For the test, I am experimenting with Google certificates. I want to check the revocation status of every certificate in Certificate chain. I am using following code: public static boolean isCertChainValid(ArrayList<X509Certificate> certificateList) { try { CertificateFactory certificateFactory = CertificateFactory.getInstance("X.509"); CertPath certPath = certificateFactory