#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) #pragma warning disable using System; using BestHTTP.SecureProtocol.Org.BouncyCastle.Tls.Crypto; namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls { /// Interface for verifying explicit Diffie-Hellman group parameters. public interface TlsDHGroupVerifier { /// Check whether the given DH group is acceptable for use. /// the to check. /// true if (and only if) the specified group is acceptable. bool Accept(DHGroup dhGroup); } } #pragma warning restore #endif