示例#1
0
 public Fp(ECCurve curve, ECFieldElement x, ECFieldElement y)
     : base(curve, x, y)
 {
 }
示例#2
0
 protected ECPoint(ECCurve curve, ECFieldElement x, ECFieldElement y)
 {
     this.curve = curve;
     this.x     = x;
     this.y     = y;
 }