Files
ichni_Official/Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/crypto/parameters/Srp6GroupParameters.cs
2026-06-15 18:18:16 +08:00

32 lines
657 B
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Math;
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
{
public sealed class Srp6GroupParameters
{
private readonly BigInteger n, g;
public Srp6GroupParameters(BigInteger N, BigInteger g)
{
this.n = N;
this.g = g;
}
public BigInteger G
{
get { return g; }
}
public BigInteger N
{
get { return n; }
}
}
}
#pragma warning restore
#endif