#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters;
namespace BestHTTP.SecureProtocol.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);
}
}
#pragma warning restore
#endif