简体   繁体   中英

Java code to display expiration date of certificates in a Java KeyStore

Looking for java code to display expiration date of certificates in a given keystore.

What i am expecting is below output after running the java code:

CerticateName: CertificateExpirationDate: NumberOfDaysLeft:

Update

I have come up with the code below, Which print certificate alias, I am interested in Expriation date

import java.io.FileInputStream;
import java.security.KeyStore;
import java.util.Enumeration;

public class sslcertslist {
  public static void main(String[] argv) throws Exception {
    FileInputStream is = new FileInputStream("MyKeystore.jks");
    KeyStore keystore = KeyStore.getInstance(KeyStore.getDefaultType());
    String password = "MyPassword";
    keystore.load(is, password.toCharArray());

    Enumeration e = keystore.aliases();
    for (; e.hasMoreElements();) {
      String alias = (String) e.nextElement();

      boolean b = keystore.isKeyEntry(alias);

      b = keystore.isCertificateEntry(alias);
      System.out.println(alias);
    }
    is.close();
  }
}
import java.io.FileInputStream;
import java.security.KeyStore;
import java.util.Enumeration;
import java.io.IOException;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.UnrecoverableEntryException;
import java.security.cert.Certificate;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.*;

public class GetSslcertsExpires {

public static void main(String[] argv) throws Exception {

 try {
        KeyStore keystore = KeyStore.getInstance(KeyStore.getDefaultType());
        keystore.load(new FileInputStream("/DemoTrust.jks"), "DemoTrustKeyStorePassPhrase".toCharArray());
        Enumeration aliases = keystore.aliases();
        for(; aliases.hasMoreElements();) {
            String alias = (String) aliases.nextElement();
            Date certExpiryDate = ((X509Certificate) keystore.getCertificate(alias)).getNotAfter();
            SimpleDateFormat ft = new SimpleDateFormat ("yyyy-MM-dd HH:mm:ss");
            //Tue Oct 17 06:02:22 AEST 2006
            Date today = new Date();
            long dateDiff = certExpiryDate.getTime() - today.getTime();
            long expiresIn = dateDiff / (24 * 60 * 60 * 1000);
            System.out.println("Certifiate: " + alias + "\tExpires On: " + certExpiryDate + "\tFormated Date: " + ft.format(certExpiryDate) + "\tToday's Date: " + ft.format(today) + "\tExpires In: "+ expiresIn);
        }
    }

catch (Exception e)
     {
       e.printStackTrace();
    }
  }
}
  • Sample Output在此处输入图片说明

Just to add another solution

public static Date getSimpleCertExpiryDate(String pfxFileName, String pfxPassword) throws KeyStoreException,
        NoSuchAlgorithmException, CertificateException, FileNotFoundException, IOException {

    KeyStore keystore = KeyStore.getInstance(KeyStore.getDefaultType());
    keystore.load(new FileInputStream(pfxFileName), pfxPassword.toCharArray());
    Enumeration<?> aliases = keystore.aliases();
    Date expiryDate = null;

    for (; aliases.hasMoreElements();) {
        String alias = (String) aliases.nextElement();
        expiryDate = ((X509Certificate) keystore.getCertificate(alias)).getNotAfter();
    }
    return expiryDate;
}

Output be Expiry Date (eg) as Tue Mar 16 11:03:25 IST 2021 You can use this to check against today's date

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM