- 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.RipeMd128
-
- All Implemented Interfaces:
AbstractCryptoFactory
,AbstractGetIterationCount
,CryptoAlgorithm
,HashFactory
public class RipeMd128 extends RipeMd
HashConfig
for RIPEMD-128.- Since:
- 1.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static String
ALGORITHM_RIPEMD_128
Thealgorithm
name "RIPEMD128".static RipeMd128
RIPEMD_256
RipeMd128
using 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 RipeMd128(int iterationCount)
The constructor.RipeMd128(SecurityProvider provider)
The constructor.RipeMd128(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_128
public static final String ALGORITHM_RIPEMD_128
Thealgorithm
name "RIPEMD128".- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RipeMd128
public RipeMd128(int iterationCount)
The constructor.- Parameters:
iterationCount
- theiteration count
.
-
RipeMd128
public RipeMd128(SecurityProvider provider)
The constructor.- Parameters:
provider
- theSecurityProvider
to use.
-
RipeMd128
public RipeMd128(SecurityProvider provider, int iterationCount)
The constructor.- Parameters:
provider
- theSecurityProvider
to use.iterationCount
- theiteration count
.
-
-