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 afactorytocreateinstances ofSymmetricKeyCreatorfor symmetric cryptographic keys.
An instance ofSymmetricKeyCreatorFactorytherefore represents a configuration with specificKeyalgorithmandformat(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 CnewKeyCreator()
-
-
-
Method Detail
-
newKeyCreator
C newKeyCreator()
- Specified by:
newKeyCreatorin interfaceKeyCreatorFactory- Returns:
- a new instance of
KeyCreator. May be reused but is not guaranteed to be thread-safe.
-
-