Package se.litsec.opensaml.utils
Class KeyStoreUtils
- java.lang.Object
-
- se.litsec.opensaml.utils.KeyStoreUtils
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static List<X509Certificate>
getCertificateEntries(KeyStore keyStore)
Returns a list of all certificate entries of the supplied keystore.static KeyStore
loadKeyStore(InputStream keyStoreStream, String keyStorePassword, String keyStoreType)
static KeyStore
loadKeyStore(String keyStorePath, String keyStorePassword, String keyStoreType)
Loads aKeyStore
based on the given arguments.static KeyStore
loadSystemTrustStore()
Loads aKeyStore
instance that contains the trusted certificates that the running system has configured.
-
-
-
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 aKeyStore
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 aKeyStore
based on the given arguments.- Parameters:
keyStorePath
- the path to the key storekeyStorePassword
- the key store passwordkeyStoreType
- the type of the keystore (ifnull
the default keystore type will be assumed)- Returns:
- a
KeyStore
instance - Throws:
KeyStoreException
- for errors loading the keystoreIOException
- for IO errors
-
loadKeyStore
public static KeyStore loadKeyStore(InputStream keyStoreStream, String keyStorePassword, String keyStoreType) throws KeyStoreException, IOException
- Throws:
KeyStoreException
IOException
-
-