#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) #pragma warning disable using System; namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls.Crypto { /// Interface for MAC services based on HMAC. public interface TlsHmac : TlsMac { /// Return the internal block size for the message digest underlying this HMAC service. /// the internal block size for the digest (in bytes). int InternalBlockSize { get; } } } #pragma warning restore #endif