public ECCPoint(mpz_t x, mpz_t y, EllipticCurve curve) { X = x; Y = y; Curve = curve; }
public ECCManager(EllipticCurve curve, GeneratorPoint generator) { Curve = curve; GeneratorPoint = generator; }
public GeneratorPoint(mpz_t x, mpz_t y, mpz_t dimention, EllipticCurve curve) : base(x, y, curve) { PointDimention = dimention; }