#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) #pragma warning disable using System; namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls.Crypto { /// Domain interface to service factory for creating Elliptic-Curve (EC) based operators. public interface TlsECDomain { /// Return an agreement operator suitable for ephemeral EC Diffie-Hellman. /// a key agreement operator. TlsAgreement CreateECDH(); } } #pragma warning restore #endif