public ECPoint(BigInteger x, BigInteger y, ECCurve curve) : this() { this.curve = curve; this.x = new FpBigInteger(x, curve.p); this.y = new FpBigInteger(y, curve.p); }
public FpBigInteger(BigInteger i, FpBigInteger p) : this(i, p.BigInteger) { }