summary refs log tree commit diff
path: root/crypto/src/tls/crypto/TlsHmac.cs
blob: 76295489975c04b3917926dae16ddeed83f6d291 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace Org.BouncyCastle.Tls.Crypto
{
    /// <summary>Interface for MAC services based on HMAC.</summary>
    public interface TlsHmac
        : TlsMac
    {
        /// <summary>Return the internal block size for the message digest underlying this HMAC service.</summary>
        /// <returns>the internal block size for the digest (in bytes).</returns>
        int InternalBlockSize { get; }
    }
}