Uses of Class
io.github.mmm.crypto.hash.HashConfig
-
-
Uses of HashConfig in io.github.mmm.crypto.asymmetric.access.ec.bc
Methods in io.github.mmm.crypto.asymmetric.access.ec.bc with parameters of type HashConfig Modifier and Type Method Description static <S extends SignatureEcBc>
Curve25519<S>Curve25519. of(SignatureFactoryEcBc<S> signatureFactory, HashConfig hashConfig, RandomFactory randomFactory)
static <S extends SignatureEcBc>
Secp256k1<S>Secp256k1. of(SignatureFactoryEcBc<S> signatureFactory, HashConfig hashConfig, RandomFactory randomFactory)
static Curve25519<SignatureEcBcPlain>
Curve25519. ofPlain(HashConfig hashConfig)
static Secp256k1<SignatureEcBcPlain>
Secp256k1. ofPlain(HashConfig hashConfig)
static Curve25519<SignatureEcBcWithRecoveryId>
Curve25519. ofRecoveryId(HashConfig hashConfig)
static Secp256k1<SignatureEcBcWithRecoveryId>
Secp256k1. ofRecoveryId(HashConfig hashConfig)
Constructors in io.github.mmm.crypto.asymmetric.access.ec.bc with parameters of type HashConfig Constructor Description AsymmetricAccessEcBc(org.bouncycastle.jce.spec.ECParameterSpec ecParameters, SignatureFactoryEcBc<S> signatureFactory, HashConfig hashConfig, RandomFactory randomFactory)
The constructor.Curve25519(SignatureFactoryEcBc<S> signatureFactory, HashConfig hashConfig, RandomFactory randomFactory)
The constructor.Secp256k1(SignatureFactoryEcBc<S> signatureFactory, HashConfig hashConfig, RandomFactory randomFactory)
The constructor. -
Uses of HashConfig in io.github.mmm.crypto.asymmetric.access.rsa
Methods in io.github.mmm.crypto.asymmetric.access.rsa with parameters of type HashConfig Modifier and Type Method Description static Rsa
Rsa. of(int keyLength, HashConfig hashConfig)
static Rsa
Rsa. of(int keyLength, HashConfig hashConfig, RandomFactory randomFactory)
static Rsa
Rsa. of(int keyLength, HashConfig hashConfig, String hashAlgorithm, RandomFactory randomFactory, SecurityProvider provider)
static Rsa
Rsa. of4096(HashConfig hashConfig)
-
Uses of HashConfig in io.github.mmm.crypto.asymmetric.sign
Methods in io.github.mmm.crypto.asymmetric.sign that return HashConfig Modifier and Type Method Description HashConfig
SignatureConfig. getHashConfig()
Constructors in io.github.mmm.crypto.asymmetric.sign with parameters of type HashConfig Constructor Description SignatureConfig(SignatureFactory<S> signatureFactory, HashConfig hashConfig, String signingAlgorithm, SecurityProvider provider)
The constructor.SignatureConfig(SignatureFactory<S> signatureFactory, HashConfig hashConfig, String signingAlgorithm, String hashAlgorithm, SecurityProvider provider)
The constructor. -
Uses of HashConfig in io.github.mmm.crypto.asymmetric.sign.ec
Constructors in io.github.mmm.crypto.asymmetric.sign.ec with parameters of type HashConfig Constructor Description SignatureConfigEcDsa(SignatureFactory<S> signatureFactory, HashConfig hashConfig, SecurityProvider provider)
The constructor.SignatureConfigEcDsa(SignatureFactory<S> signatureFactory, HashConfig hashConfig, String hashAlgorithm, SecurityProvider provider)
The constructor. -
Uses of HashConfig in io.github.mmm.crypto.asymmetric.sign.rsa
Constructors in io.github.mmm.crypto.asymmetric.sign.rsa with parameters of type HashConfig Constructor Description SignatureConfigRsa(HashConfig hashConfig, SecurityProvider provider)
The constructor.SignatureConfigRsa(HashConfig hashConfig, String hashAlgorithm, SecurityProvider provider)
The constructor. -
Uses of HashConfig in io.github.mmm.crypto.hash
Methods in io.github.mmm.crypto.hash that return HashConfig Modifier and Type Method Description HashConfig
HashConfig. decrementIterationCount()
-
Uses of HashConfig in io.github.mmm.crypto.hash.access
Methods in io.github.mmm.crypto.hash.access with parameters of type HashConfig Modifier and Type Method Description static HashAccess
HashAccess. of(HashConfig config)
Constructors in io.github.mmm.crypto.hash.access with parameters of type HashConfig Constructor Description HashAccess(HashConfig config)
The constructor. -
Uses of HashConfig in io.github.mmm.crypto.hash.md5
Subclasses of HashConfig in io.github.mmm.crypto.hash.md5 Modifier and Type Class Description class
Md5
HashConfig
forMD5
. -
Uses of HashConfig in io.github.mmm.crypto.hash.ripemd
Subclasses of HashConfig in io.github.mmm.crypto.hash.ripemd Modifier and Type Class Description class
RipeMd
HashConfig
for RIPEMD.class
RipeMd128
HashConfig
for RIPEMD-128.class
RipeMd160
HashConfig
for RIPEMD-160.class
RipeMd256
HashConfig
for RIPEMD-256.class
RipeMd320
HashConfig
for RIPEMD-320. -
Uses of HashConfig in io.github.mmm.crypto.hash.sha1
Subclasses of HashConfig in io.github.mmm.crypto.hash.sha1 Modifier and Type Class Description class
Sha1
HashConfig
forSHA1
. -
Uses of HashConfig in io.github.mmm.crypto.hash.sha2
Subclasses of HashConfig in io.github.mmm.crypto.hash.sha2 Modifier and Type Class Description class
Sha2
HashConfig
for SHA-2.class
Sha224
HashConfig
for SHA-224.class
Sha256
HashConfig
for SHA-256.class
Sha384
HashConfig
for SHA-384.class
Sha512
HashConfig
for SHA-512.
-