-
- All Superinterfaces:
AbstractGetNonceSize
,CryptoAlgorithm
,CryptoProcessor
,Cryptor
- All Known Subinterfaces:
AbstractDecryptor
- All Known Implementing Classes:
DecryptorImplCipher
,DecryptorImplCombined
public interface Decryptor extends Cryptor
ExtendsCryptor
with methods specific for decryption.- 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 Decryptor
combine(Decryptor... decryptors)
InputStream
wrapStream(InputStream stream)
-
Methods inherited from interface io.github.mmm.crypto.crypt.AbstractGetNonceSize
getNonceSize
-
Methods inherited from interface io.github.mmm.crypto.algorithm.CryptoAlgorithm
getAlgorithm
-
Methods inherited from interface io.github.mmm.crypto.CryptoProcessor
process, process, process, reset
-
-
-
-
Method Detail
-
wrapStream
InputStream wrapStream(InputStream stream)
- Parameters:
stream
- theInputStream
to wrap.- Returns:
- the wrapped
InputStream
that reads from the givenInputStream
after performing decryption.
-
-