Uses of Interface
io.github.mmm.crypto.asymmetric.key.AsymmetricKeyCreator
-
-
Uses of AsymmetricKeyCreator in io.github.mmm.crypto.asymmetric.access
Classes in io.github.mmm.crypto.asymmetric.access with type parameters of type AsymmetricKeyCreator Modifier and Type Class Description class
AsymmetricAccess<S extends SignatureBinary,PR extends PrivateKey,PU extends PublicKey,PAIR extends AsymmetricKeyPair<PR,PU>,KC extends AsymmetricKeyCreator<PR,PU,PAIR>>
Abstract base implementation of factory forkey management
,encryption/decryption
, andsignature management
based onasymmetric
cryptography. -
Uses of AsymmetricKeyCreator in io.github.mmm.crypto.asymmetric.key
Classes in io.github.mmm.crypto.asymmetric.key with type parameters of type AsymmetricKeyCreator Modifier and Type Interface Description interface
AsymmetricKeyCreatorFactory<K extends AsymmetricKeyCreator<?,?,?>>
Interface for afactory
tocreate
instances ofKeyCreator
for asymmetric cryptographic keys.
An instance ofAsymmetricKeyCreatorFactory
therefore represents a configuration with specificKey
algorithm
andformat
(s).Classes in io.github.mmm.crypto.asymmetric.key that implement AsymmetricKeyCreator Modifier and Type Class Description class
AbstractAsymmetricKeyCreator<PR extends PrivateKey,PU extends PublicKey,PAIR extends AbstractAsymmetricKeyPair<PR,PU>>
Abstract base implementation ofKeyCreator
. -
Uses of AsymmetricKeyCreator in io.github.mmm.crypto.asymmetric.key.ec.bc
Classes in io.github.mmm.crypto.asymmetric.key.ec.bc that implement AsymmetricKeyCreator Modifier and Type Class Description class
AsymmetricKeyCreatorEcBc
Implementation ofAsymmetricKeyCreator
forAsymmetricKeyPairEcBc
. -
Uses of AsymmetricKeyCreator in io.github.mmm.crypto.asymmetric.key.generic
Classes in io.github.mmm.crypto.asymmetric.key.generic that implement AsymmetricKeyCreator Modifier and Type Class Description class
AsymmetricKeyCreatorImpl<PR extends PrivateKey,PU extends PublicKey,PAIR extends AbstractAsymmetricKeyPair<PR,PU>>
Generic implementation ofKeyCreator
.Methods in io.github.mmm.crypto.asymmetric.key.generic that return AsymmetricKeyCreator Modifier and Type Method Description static AsymmetricKeyCreator<PrivateKey,PublicKey,AsymmetricKeyPairGeneric>
AsymmetricKeyCreatorImpl. of(String algorithm, int keyLength)
static AsymmetricKeyCreator<PrivateKey,PublicKey,AsymmetricKeyPairGeneric>
AsymmetricKeyCreatorImpl. of(String algorithm, int keyLength, SecurityProvider provider, RandomFactory randomFactory)
static AsymmetricKeyCreator<PrivateKey,PublicKey,AsymmetricKeyPairGeneric>
AsymmetricKeyCreatorImpl. of(String algorithm, int keyLength, RandomFactory randomFactory)
-
Uses of AsymmetricKeyCreator in io.github.mmm.crypto.asymmetric.key.rsa
Classes in io.github.mmm.crypto.asymmetric.key.rsa that implement AsymmetricKeyCreator Modifier and Type Class Description class
AsymmetricKeyCreatorRsa
Implementation ofAsymmetricKeyCreator
forRSA
.
-