#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 Diffie-Hellman operators.
public interface TlsDHDomain
{
/// Return an agreement operator suitable for ephemeral Diffie-Hellman.
/// a key agreement operator.
TlsAgreement CreateDH();
}
}
#pragma warning restore
#endif