Module io.github.mmm.crypto
Interface SymmetricKeyCreatorFactory<C extends SymmetricKeyCreator<?>>
-
- Type Parameters:
C
- type ofSymmetricKeyCreator
.
- All Superinterfaces:
KeyCreatorFactory
- All Known Implementing Classes:
PbeAccess
,SymmetricAccess
public interface SymmetricKeyCreatorFactory<C extends SymmetricKeyCreator<?>> extends KeyCreatorFactory
Interface for afactory
tocreate
instances ofSymmetricKeyCreator
for symmetric cryptographic keys.
An instance ofSymmetricKeyCreatorFactory
therefore represents a configuration with specificKey
algorithm
andformat
(s).- Since:
- 1.0.0
- Author:
- Joerg Hohwiller (hohwille at users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description C
newKeyCreator()
-
-
-
Method Detail
-
newKeyCreator
C newKeyCreator()
- Specified by:
newKeyCreator
in interfaceKeyCreatorFactory
- Returns:
- a new instance of
KeyCreator
. May be reused but is not guaranteed to be thread-safe.
-
-