-
- All Known Subinterfaces:
AsymmetricKeyCreatorFactory<K>
,SymmetricKeyCreatorFactory<C>
- All Known Implementing Classes:
AsymmetricAccess
,AsymmetricAccessEcBc
,Curve25519
,PbeAccess
,Rsa
,Secp256k1
,SymmetricAccess
public interface KeyCreatorFactory
Interface for afactory
tocreate
instances ofKeyCreator
for asymmetric cryptographic keys.
An instance ofKeyCreatorFactory
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 KeyCreator
newKeyCreator()
-
-
-
Method Detail
-
newKeyCreator
KeyCreator newKeyCreator()
- Returns:
- a new instance of
KeyCreator
. May be reused but is not guaranteed to be thread-safe.
-
-