How to get server certificate chain then verify it's valid and trusted in Java

后端 未结 3 1824
时光取名叫无心
时光取名叫无心 2020-11-30 04:22

I need to create an Https connection with a remote server then retrieve and verify the certificate.

I have established the connection fine:

try {  
          


        
3条回答
  •  失恋的感觉
    2020-11-30 04:40

    The method you want is getServerCertificates, not getServerCertificateChain. There is some nice sample code here.


    EDIT

    Added some sample code of my own. Good starting point for you. Don't forget to look at the Javadocs for HttpsURLConnection and X509Certificate.

    import java.net.URL;
    import java.security.cert.Certificate;
    import java.security.cert.CertificateExpiredException;
    import java.security.cert.X509Certificate;
    
    import javax.net.ssl.HttpsURLConnection;
    
    public class TestSecuredConnection {
    
        /**
         * @param args
         */
        public static void main(String[] args) {
            TestSecuredConnection tester = new TestSecuredConnection();
            try {
                tester.testConnectionTo("https://www.google.com");
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    
        public TestSecuredConnection() {
            super();
        }
    
        public void testConnectionTo(String aURL) throws Exception {
            URL destinationURL = new URL(aURL);
            HttpsURLConnection conn = (HttpsURLConnection) destinationURL
                    .openConnection();
            conn.connect();
            Certificate[] certs = conn.getServerCertificates();
            for (Certificate cert : certs) {
                System.out.println("Certificate is: " + cert);
                if(cert instanceof X509Certificate) {
                    try {
                        ( (X509Certificate) cert).checkValidity();
                        System.out.println("Certificate is active for current date");
                    } catch(CertificateExpiredException cee) {
                        System.out.println("Certificate is expired");
                    }
                }
            }
        }
    }
    

提交回复
热议问题