- java.lang.Object
-
- io.github.mmm.crypto.CryptoConfig
-
- io.github.mmm.crypto.algorithm.CryptoAlgorithmConfig
-
- io.github.mmm.crypto.hash.HashConfig
-
- io.github.mmm.crypto.hash.ripemd.RipeMd
-
- io.github.mmm.crypto.hash.ripemd.RipeMd320
-
- All Implemented Interfaces:
AbstractCryptoFactory,AbstractGetIterationCount,CryptoAlgorithm,HashFactory
public class RipeMd320 extends RipeMd
HashConfigfor RIPEMD-320.- Since:
- 1.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static StringALGORITHM_RIPEMD_320Thealgorithmname "RIPEMD320".static RipeMd320RIPEMD_320RipeMd320using default provider.-
Fields inherited from class io.github.mmm.crypto.hash.HashConfig
ALGORITHM_NONE
-
Fields inherited from class io.github.mmm.crypto.algorithm.CryptoAlgorithmConfig
algorithm
-
Fields inherited from class io.github.mmm.crypto.CryptoConfig
provider
-
-
Constructor Summary
Constructors Constructor Description RipeMd320(int iterationCount)The constructor.RipeMd320(SecurityProvider provider)The constructor.RipeMd320(SecurityProvider provider, int iterationCount)The constructor.
-
Method Summary
-
Methods inherited from class io.github.mmm.crypto.hash.HashConfig
decrementIterationCount, getIterationCount, newAccess, newHashCreator
-
Methods inherited from class io.github.mmm.crypto.algorithm.CryptoAlgorithmConfig
getAlgorithm
-
Methods inherited from class io.github.mmm.crypto.CryptoConfig
getProvider
-
-
-
-
Field Detail
-
ALGORITHM_RIPEMD_320
public static final String ALGORITHM_RIPEMD_320
Thealgorithmname "RIPEMD320".- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RipeMd320
public RipeMd320(int iterationCount)
The constructor.- Parameters:
iterationCount- theiteration count.
-
RipeMd320
public RipeMd320(SecurityProvider provider)
The constructor.- Parameters:
provider- theSecurityProviderto use.
-
RipeMd320
public RipeMd320(SecurityProvider provider, int iterationCount)
The constructor.- Parameters:
provider- theSecurityProviderto use.iterationCount- theiteration count.
-
-