#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
namespace BestHTTP.SecureProtocol.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();
}
}
#pragma warning restore
#endif