Bouncy Castle Cryptography Library 1.77.0

org.bouncycastle.crypto.modes
Interface AEADBlockCipher

All Superinterfaces:
AEADCipher
All Known Subinterfaces:
CCMModeCipher, GCMModeCipher
All Known Implementing Classes:
GCMSIVBlockCipher, KCCMBlockCipher, KGCMBlockCipher, OCBBlockCipher, EAXBlockCipher

public interface AEADBlockCipher
extends AEADCipher

An AEADCipher based on a BlockCipher.


Method Summary
 BlockCipher getUnderlyingCipher()
          return the BlockCipher this object wraps.
 
Methods inherited from interface org.bouncycastle.crypto.modes.AEADCipher
doFinal, getAlgorithmName, getMac, getOutputSize, getUpdateOutputSize, init, processAADByte, processAADBytes, processByte, processBytes, reset
 

Method Detail

getUnderlyingCipher

public BlockCipher getUnderlyingCipher()
return the BlockCipher this object wraps.
Returns:
the BlockCipher this object wraps.

Bouncy Castle Cryptography Library 1.77.0