Renci.SshNet.Security.Org.BouncyCastle.Math.EC.F2mCurve
namespace Renci.SshNet.Security.Org.BouncyCastle.Math.EC
{
internal class F2mCurve : AbstractF2mCurve
{
protected readonly F2mPoint m_infinity;
public int M { get; }
public int K1 { get; }
public int K2 { get; }
public int K3 { get; }
public F2mCurve(int m, int k, BigInteger a, BigInteger b);
public F2mCurve(int m, int k, BigInteger a, BigInteger b, BigInteger order, BigInteger cofactor);
public F2mCurve(int m, int k1, int k2, int k3, BigInteger a, BigInteger b);
public F2mCurve(int m, int k1, int k2, int k3, BigInteger a, BigInteger b, BigInteger order, BigInteger cofactor);
protected F2mCurve(int m, int k1, int k2, int k3, ECFieldElement a, ECFieldElement b, BigInteger order, BigInteger cofactor);
public bool IsTrinomial();
}
}