Exemplo n.º 1
0
 public Fp(ECCurve curve, ECFieldElement x, ECFieldElement y)
     : base(curve, x, y)
 {
 }
Exemplo n.º 2
0
 protected ECPoint(ECCurve curve, ECFieldElement x, ECFieldElement y)
 {
     this.curve = curve;
     this.x     = x;
     this.y     = y;
 }