using System;
using Org.BouncyCastle.Crypto.Parameters;
namespace Org.BouncyCastle.Crypto.Tls
{
/// An interface for verifying that Diffie-Hellman parameters are acceptable.
public interface TlsDHVerifier
{
/// Verify that the given DHParameters are acceptable.
/// The DHParameters to verify.
/// true if (and only if) the specified parameters are acceptable.
bool Accept(DHParameters dhParameters);
}
}