Class KeyStoreUtils


  • public class KeyStoreUtils
    extends Object
    Utility methods for Java KeyStore objects.
    Author:
    Martin Lindström (martin.lindstrom@litsec.se)
    • Method Detail

      • getCertificateEntries

        public static List<X509Certificate> getCertificateEntries​(KeyStore keyStore)
                                                           throws KeyStoreException
        Returns a list of all certificate entries of the supplied keystore.
        Parameters:
        keyStore - the keystore to read from
        Returns:
        a list of certificates
        Throws:
        KeyStoreException - for keystore access errors
      • loadSystemTrustStore

        public static KeyStore loadSystemTrustStore()
                                             throws KeyStoreException
        Loads a KeyStore instance that contains the trusted certificates that the running system has configured. using the following system properties:
        • javax.net.ssl.trustStore - the path to the keystore holding the system trusted certificates.
        • javax.net.ssl.trustStorePassword - the password to unlock the keystore.
        • javax.net.ssl.trustStoreType - the type of the keystore. If this system property is not set the default keystore type will be assumed.
        Returns:
        a KeyStore instance holding the system's trusted certificates
        Throws:
        KeyStoreException - for errors loading the system trust keystore
      • loadKeyStore

        public static KeyStore loadKeyStore​(String keyStorePath,
                                            String keyStorePassword,
                                            String keyStoreType)
                                     throws KeyStoreException,
                                            IOException
        Loads a KeyStore based on the given arguments.
        Parameters:
        keyStorePath - the path to the key store
        keyStorePassword - the key store password
        keyStoreType - the type of the keystore (if null the default keystore type will be assumed)
        Returns:
        a KeyStore instance
        Throws:
        KeyStoreException - for errors loading the keystore
        IOException - for IO errors