-
- All Superinterfaces:
AbstractCryptoFactory
- All Known Implementing Classes:
AsymmetricAccess
,AsymmetricAccessEcBc
,Curve25519
,HashAccess
,HashConfig
,HashFactoryCombined
,Md5
,RipeMd
,RipeMd128
,RipeMd160
,RipeMd256
,RipeMd320
,Rsa
,Secp256k1
,Sha1
,Sha2
,Sha224
,Sha256
,Sha384
,Sha512
public interface HashFactory extends AbstractCryptoFactory
Interface for afactory
tocreate
instances ofHashCreator
. An instance ofHashFactory
therefore represents a specific configuration (seeHashConfig
) based on anhash algorithm
.- Since:
- 1.0.0
- Author:
- Joerg Hohwiller (hohwille at users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HashCreator
newHashCreator()
-
-
-
Method Detail
-
newHashCreator
HashCreator newHashCreator()
- Returns:
- a new instance of
HashCreator
for the configured hash algorithm of this factory.
-
-