Package se.litsec.opensaml.utils.spring
Class PrivateKeyEntryFactoryBean
- java.lang.Object
-
- org.springframework.beans.factory.config.AbstractFactoryBean<KeyStore.PrivateKeyEntry>
-
- se.litsec.opensaml.utils.spring.PrivateKeyEntryFactoryBean
-
- All Implemented Interfaces:
org.springframework.beans.factory.Aware
,org.springframework.beans.factory.BeanClassLoaderAware
,org.springframework.beans.factory.BeanFactoryAware
,org.springframework.beans.factory.DisposableBean
,org.springframework.beans.factory.FactoryBean<KeyStore.PrivateKeyEntry>
,org.springframework.beans.factory.InitializingBean
public class PrivateKeyEntryFactoryBean extends org.springframework.beans.factory.config.AbstractFactoryBean<KeyStore.PrivateKeyEntry>
An implementation of a SpringFactoryBean
that reads a JKS-file and extracts a private key with its certificate.- Author:
- Martin Lindström (martin@litsec.se)
-
-
Field Summary
Fields Modifier and Type Field Description protected String
alias
The alias holding the private key entry.protected char[]
keyPassword
The password for unlocking the key.protected org.springframework.core.io.Resource
storeLocation
The resource holding the keystore.protected char[]
storePassword
The keystore password.protected String
storeType
The type of keystore.
-
Constructor Summary
Constructors Constructor Description PrivateKeyEntryFactoryBean(org.springframework.core.io.Resource storeLocation, char[] storePassword)
Constructor setting up a factory bean that will load the JKS-file given bystoreLocation
, unlock it and then load the private key entry using thestorePassword
.PrivateKeyEntryFactoryBean(org.springframework.core.io.Resource storeLocation, char[] storePassword, String storeType)
Constructor setting up a factory bean that will load the keystore of the given type fromstoreLocation
, unlock it and then load the private key entry using thestorePassword
.PrivateKeyEntryFactoryBean(org.springframework.core.io.Resource storeLocation, char[] storePassword, String alias, char[] keyPassword)
Constructor setting up a factory bean the will load a JKS-store, unlock it and locate and unlock the given private key entry identified byalias
.PrivateKeyEntryFactoryBean(org.springframework.core.io.Resource storeLocation, char[] storePassword, String storeType, String alias, char[] keyPassword)
Constructor setting up a factory bean the will load a keystore of the given type, unlock it and locate and unlock the given private key entry identified byalias
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected KeyStore.PrivateKeyEntry
createInstance()
void
destroy()
protected void
destroyInstance(KeyStore.PrivateKeyEntry instance)
Class<? extends KeyStore.PrivateKeyEntry>
getObjectType()
-
-
-
Field Detail
-
storeLocation
protected org.springframework.core.io.Resource storeLocation
The resource holding the keystore.
-
storePassword
protected char[] storePassword
The keystore password.
-
storeType
protected String storeType
The type of keystore.
-
alias
protected String alias
The alias holding the private key entry. Ifnull
the first private key entry is selected.
-
keyPassword
protected char[] keyPassword
The password for unlocking the key. Ifnull
the store password will be used.
-
-
Constructor Detail
-
PrivateKeyEntryFactoryBean
public PrivateKeyEntryFactoryBean(org.springframework.core.io.Resource storeLocation, char[] storePassword)
Constructor setting up a factory bean that will load the JKS-file given bystoreLocation
, unlock it and then load the private key entry using thestorePassword
.This constructor should be used if the caller knows that the keystore only contains one private key entry that has the same password as the store itself. However, if the keystore contains several private key entries, the first one that can be unlocked using the keystore password will be returned.
- Parameters:
storeLocation
- the path to the JKS-filestorePassword
- the password for unlocking the JKS-file- See Also:
PrivateKeyEntryFactoryBean(Resource, char[], String, char[])
-
PrivateKeyEntryFactoryBean
public PrivateKeyEntryFactoryBean(org.springframework.core.io.Resource storeLocation, char[] storePassword, String storeType)
Constructor setting up a factory bean that will load the keystore of the given type fromstoreLocation
, unlock it and then load the private key entry using thestorePassword
.This constructor should be used if the caller knows that the keystore only contains one private key entry that has the same password as the store itself. However, if the keystore contains several private key entries, the first one that can be unlocked using the keystore password will be returned.
- Parameters:
storeLocation
- the path to the keystorestorePassword
- the password for unlocking the keystorestoreType
- the type of keystore ("jks", "pkcs12", ...)- See Also:
PrivateKeyEntryFactoryBean(Resource, char[], String, String, char[])
-
PrivateKeyEntryFactoryBean
public PrivateKeyEntryFactoryBean(org.springframework.core.io.Resource storeLocation, char[] storePassword, String alias, char[] keyPassword)
Constructor setting up a factory bean the will load a JKS-store, unlock it and locate and unlock the given private key entry identified byalias
.- Parameters:
storeLocation
- the path to the JKS-filestorePassword
- the password for unlocking the keystorealias
- keystore alias for the private key entrykeyPassword
- the password for unlocking the private key entry
-
PrivateKeyEntryFactoryBean
public PrivateKeyEntryFactoryBean(org.springframework.core.io.Resource storeLocation, char[] storePassword, String storeType, String alias, char[] keyPassword)
Constructor setting up a factory bean the will load a keystore of the given type, unlock it and locate and unlock the given private key entry identified byalias
.- Parameters:
storeLocation
- the path to the JKS-filestorePassword
- the password for unlocking the keystorestoreType
- the type of keystore ("jks", "pkcs12", ...)alias
- keystore alias for the private key entrykeyPassword
- the password for unlocking the private key entry
-
-
Method Detail
-
createInstance
protected KeyStore.PrivateKeyEntry createInstance() throws Exception
- Specified by:
createInstance
in classorg.springframework.beans.factory.config.AbstractFactoryBean<KeyStore.PrivateKeyEntry>
- Throws:
Exception
-
getObjectType
public Class<? extends KeyStore.PrivateKeyEntry> getObjectType()
- Specified by:
getObjectType
in interfaceorg.springframework.beans.factory.FactoryBean<KeyStore.PrivateKeyEntry>
- Specified by:
getObjectType
in classorg.springframework.beans.factory.config.AbstractFactoryBean<KeyStore.PrivateKeyEntry>
-
destroy
public void destroy() throws Exception
- Specified by:
destroy
in interfaceorg.springframework.beans.factory.DisposableBean
- Overrides:
destroy
in classorg.springframework.beans.factory.config.AbstractFactoryBean<KeyStore.PrivateKeyEntry>
- Throws:
Exception
-
destroyInstance
protected void destroyInstance(KeyStore.PrivateKeyEntry instance) throws Exception
- Overrides:
destroyInstance
in classorg.springframework.beans.factory.config.AbstractFactoryBean<KeyStore.PrivateKeyEntry>
- Throws:
Exception
-
-