Module io.github.mmm.crypto
Package io.github.mmm.crypto.algorithm
Class AbstractCryptoAlgorithmWithProvider
- java.lang.Object
-
- io.github.mmm.crypto.algorithm.AbstractSecurityAlgorithm
-
- io.github.mmm.crypto.algorithm.AbstractCryptoAlgorithmWithProvider
-
- All Implemented Interfaces:
CryptoAlgorithm
- Direct Known Subclasses:
AbstractCryptoAlgorithmWithRandom
,CryptoAlgorithmImpl
,RandomFactoryImpl
,SymmetricKeyCreatorImpl
public abstract class AbstractCryptoAlgorithmWithProvider extends AbstractSecurityAlgorithm
The abstract base implementation ofCryptoAlgorithm
.- Since:
- 1.0.0
- Author:
- Joerg Hohwiller (hohwille at users.sourceforge.net)
-
-
Field Summary
Fields Modifier and Type Field Description protected SecurityProvider
provider
TheSecurityProvider
.
-
Constructor Summary
Constructors Constructor Description AbstractCryptoAlgorithmWithProvider(SecurityProvider provider)
The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SecurityProvider
getProvider()
-
Methods inherited from class io.github.mmm.crypto.algorithm.AbstractSecurityAlgorithm
creationFailedException, creationFailedException, creationFailedException, creationFailedException, getAlgorithm, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.github.mmm.crypto.algorithm.CryptoAlgorithm
getAlgorithm
-
-
-
-
Field Detail
-
provider
protected final SecurityProvider provider
TheSecurityProvider
.
-
-
Constructor Detail
-
AbstractCryptoAlgorithmWithProvider
public AbstractCryptoAlgorithmWithProvider(SecurityProvider provider)
The constructor.- Parameters:
provider
- the optional securityProvider
.
-
-
Method Detail
-
getProvider
public SecurityProvider getProvider()
- Returns:
- the
SecurityProvider
.
-
-