#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls.Crypto
{
/// Carrier class for SRP-6 group parameters.
public class Srp6Group
{
private readonly BigInteger n, g;
/// Base constructor.
/// the n value.
/// the g value.
public Srp6Group(BigInteger n, BigInteger g)
{
this.n = n;
this.g = g;
}
public virtual BigInteger G
{
get { return g; }
}
public virtual BigInteger N
{
get { return n; }
}
}
}
#pragma warning restore
#endif