Class BasicKeystoreKeyStrategyTool
- java.lang.Object
-
- net.shibboleth.utilities.java.support.security.BasicKeystoreKeyStrategyTool
-
public class BasicKeystoreKeyStrategyTool extends Object
Implements a tool for managing secret keys in accordance with theBasicKeystoreKeyStrategy.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classBasicKeystoreKeyStrategyTool.CommandLineArgsManages command line parsing for application and the bean properties used by the tool.static classBasicKeystoreKeyStrategyTool.FileConverterCommand line option conversion from String to File.
-
Field Summary
Fields Modifier and Type Field Description private BasicKeystoreKeyStrategyTool.CommandLineArgsargsContainer for options that can be parsed from a command line.private org.slf4j.LoggerlogClass logger.
-
Constructor Summary
Constructors Constructor Description BasicKeystoreKeyStrategyTool()Constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidchangeKey()The main routine.static voidmain(String[] args)Command line entry point.voidsetKeyAlias(String alias)Set the encryption key alias base name.voidsetKeyCount(int count)Set the number of keys to maintain.voidsetKeySize(int size)Set the size of the generated key.voidsetKeystoreFile(File file)Set the keystore file to create or modify.voidsetKeystorePassword(String password)Set the password for the keystore.voidsetKeystoreType(String type)Set the type of keystore to create.voidsetKeyType(String type)Set the type of key that will be generated.voidsetVersionFile(File file)Set the key versioning file to create or modify.
-
-
-
Field Detail
-
log
@Nonnull private org.slf4j.Logger log
Class logger.
-
args
@Nonnull private final BasicKeystoreKeyStrategyTool.CommandLineArgs args
Container for options that can be parsed from a command line.
-
-
Method Detail
-
setKeyType
public void setKeyType(@Nonnull @NotEmpty String type)
Set the type of key that will be generated. Defaults to AES.- Parameters:
type- type of key that will be generated
-
setKeySize
public void setKeySize(@Positive int size)
Set the size of the generated key. Defaults to 128- Parameters:
size- size of the generated key
-
setKeyAlias
public void setKeyAlias(@Nonnull @NotEmpty String alias)
Set the encryption key alias base name.- Parameters:
alias- the encryption key alias base
-
setKeyCount
public void setKeyCount(@Positive int count)
Set the number of keys to maintain. Defaults to 30.- Parameters:
count- number of keys to maintain
-
setKeystoreType
public void setKeystoreType(@Nonnull @NotEmpty String type)
Set the type of keystore to create. Defaults to JCEKS.- Parameters:
type- keystore type
-
setKeystoreFile
public void setKeystoreFile(@Nonnull File file)Set the keystore file to create or modify.- Parameters:
file- keystore file
-
setKeystorePassword
public void setKeystorePassword(@Nullable String password)Set the password for the keystore.- Parameters:
password- password for the keystore
-
setVersionFile
public void setVersionFile(@Nonnull File file)Set the key versioning file to create or modify.- Parameters:
file- key versioning file
-
changeKey
public void changeKey() throws ExceptionThe main routine.- Throws:
Exception- if an error occurs
-
-