Ejemplo n.º 1
0
 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);
 }
Ejemplo n.º 2
0
 public FpBigInteger(BigInteger i, FpBigInteger p)
     : this(i, p.BigInteger)
 {
 }