Class BasicKeystoreKeyStrategyTool
java.lang.Object
net.shibboleth.utilities.java.support.security.BasicKeystoreKeyStrategyTool
Implements a tool for managing secret keys in accordance with the
BasicKeystoreKeyStrategy
.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static class
Manages command line parsing for application and the bean properties used by the tool.static class
Command line option conversion from String to File. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BasicKeystoreKeyStrategyTool.CommandLineArgs
Container for options that can be parsed from a command line.private org.slf4j.Logger
Class logger. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
The main routine.static void
Command line entry point.void
setKeyAlias
(String alias) Set the encryption key alias base name.void
setKeyCount
(int count) Set the number of keys to maintain.void
setKeySize
(int size) Set the size of the generated key.void
setKeystoreFile
(File file) Set the keystore file to create or modify.void
setKeystorePassword
(String password) Set the password for the keystore.void
setKeystoreType
(String type) Set the type of keystore to create.void
setKeyType
(String type) Set the type of key that will be generated.void
setVersionFile
(File file) Set the key versioning file to create or modify.
-
Field Details
-
log
@Nonnull private org.slf4j.Logger logClass logger. -
args
Container for options that can be parsed from a command line.
-
-
Constructor Details
-
BasicKeystoreKeyStrategyTool
public BasicKeystoreKeyStrategyTool()Constructor.
-
-
Method Details
-
setKeyType
Set the type of key that will be generated. Defaults to AES.- Parameters:
type
- type of key that will be generated
-
setKeySize
Set the size of the generated key. Defaults to 128- Parameters:
size
- size of the generated key
-
setKeyAlias
Set the encryption key alias base name.- Parameters:
alias
- the encryption key alias base
-
setKeyCount
Set the number of keys to maintain. Defaults to 30.- Parameters:
count
- number of keys to maintain
-
setKeystoreType
Set the type of keystore to create. Defaults to JCEKS.- Parameters:
type
- keystore type
-
setKeystoreFile
Set the keystore file to create or modify.- Parameters:
file
- keystore file
-
setKeystorePassword
Set the password for the keystore.- Parameters:
password
- password for the keystore
-
setVersionFile
Set the key versioning file to create or modify.- Parameters:
file
- key versioning file
-
changeKey
The main routine.- Throws:
Exception
- if an error occurs
-
main
Command line entry point.- Parameters:
args
- command line arguments- Throws:
Exception
- if something goes wrong
-