summary refs log tree commit diff
path: root/crypto/src/crypto/IMacDerivationFunction.cs
blob: 354524e5af567c8536603b905bbd63efe2d8ef2b (plain) (blame)
1
2
3
4
5
6
7
8
namespace Org.BouncyCastle.Crypto
{
    public interface IMacDerivationFunction
        : IDerivationFunction
    {
        IMac Mac { get; }
    }
}