#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes
{
public interface IBlockCipherMode
: IBlockCipher
{
/// Return the underlying this cipher mode.
IBlockCipher UnderlyingCipher { get; }
/// Indicates whether this cipher mode can handle partial blocks.
bool IsPartialBlockOkay { get; }
///
/// Reset the cipher mode to the same state as it was after the last init (if there was one).
///
void Reset();
}
}
#pragma warning restore
#endif