using System; namespace Org.BouncyCastle.Crypto.Modes { /// An IAeadCipher based on an IBlockCipher. public interface IAeadBlockCipher : IAeadCipher { /// The block size for this cipher, in bytes. int GetBlockSize(); /// The block cipher underlying this algorithm. IBlockCipher GetUnderlyingCipher(); } }