Uses of Interface
io.github.mmm.crypto.key.KeyCreatorFactory
-
-
Uses of KeyCreatorFactory in io.github.mmm.crypto.asymmetric.access
Classes in io.github.mmm.crypto.asymmetric.access that implement KeyCreatorFactory 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 KeyCreatorFactory in io.github.mmm.crypto.asymmetric.access.ec.bc
Classes in io.github.mmm.crypto.asymmetric.access.ec.bc that implement KeyCreatorFactory Modifier and Type Class Description class
AsymmetricAccessEcBc<S extends SignatureEcBc>
class
Curve25519<S extends SignatureEcBc>
AsymmetricAccessEcBc
forCurve25519
.class
Secp256k1<S extends SignatureEcBc>
AsymmetricAccessEcBc
forSecP256K1Curve
. -
Uses of KeyCreatorFactory in io.github.mmm.crypto.asymmetric.access.rsa
Classes in io.github.mmm.crypto.asymmetric.access.rsa that implement KeyCreatorFactory Modifier and Type Class Description class
Rsa
Direct builder for RSA (Ron Rivest, Adi Shamir and Leonard Adleman) used by PGP/GPG and many others. -
Uses of KeyCreatorFactory in io.github.mmm.crypto.asymmetric.key
Subinterfaces of KeyCreatorFactory in io.github.mmm.crypto.asymmetric.key 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). -
Uses of KeyCreatorFactory in io.github.mmm.crypto.symmetric.access
Classes in io.github.mmm.crypto.symmetric.access that implement KeyCreatorFactory Modifier and Type Class Description class
SymmetricAccess<K extends SecretKey>
Abstract base implementation of factory forkey management
andencryption/decryption
based onsymmetric
cryptography. -
Uses of KeyCreatorFactory in io.github.mmm.crypto.symmetric.access.pbe
Classes in io.github.mmm.crypto.symmetric.access.pbe that implement KeyCreatorFactory Modifier and Type Class Description class
PbeAccess
SymmetricAccess
for PBE (Password Based Encryption). -
Uses of KeyCreatorFactory in io.github.mmm.crypto.symmetric.key
Subinterfaces of KeyCreatorFactory in io.github.mmm.crypto.symmetric.key Modifier and Type Interface Description interface
SymmetricKeyCreatorFactory<C extends SymmetricKeyCreator<?>>
Interface for afactory
tocreate
instances ofSymmetricKeyCreator
for symmetric cryptographic keys.
An instance ofSymmetricKeyCreatorFactory
therefore represents a configuration with specificKey
algorithm
andformat
(s).
-