using System; namespace 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; } } }