Module io.github.mmm.crypto
Interface AsymmetricKeyCreatorFactory<K extends AsymmetricKeyCreator<?,?,?>>
-
- Type Parameters:
K- type ofAsymmetricKeyCreator.
- All Superinterfaces:
KeyCreatorFactory
- All Known Implementing Classes:
AsymmetricAccess,AsymmetricAccessEcBc,Curve25519,Rsa,Secp256k1
public interface AsymmetricKeyCreatorFactory<K extends AsymmetricKeyCreator<?,?,?>> extends KeyCreatorFactory
Interface for afactorytocreateinstances ofKeyCreatorfor asymmetric cryptographic keys.
An instance ofAsymmetricKeyCreatorFactorytherefore 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 KnewKeyCreator()
-
-
-
Method Detail
-
newKeyCreator
K newKeyCreator()
- Specified by:
newKeyCreatorin interfaceKeyCreatorFactory- Returns:
- a new instance of
KeyCreator. May be reused but is not guaranteed to be thread-safe.
-
-