Exemplo n.º 1
0
 protected static CurvePoint Inverse(CurvePoint p, BigInteger modulo) => new CurvePoint(p.X, Mod(-p.Y, modulo));
Exemplo n.º 2
0
 public bool IsOnCurve(CurvePoint p)
 {
     try { CheckOnCurve(p); }
     catch { return(false); }
     return(true);
 }
Exemplo n.º 3
0
 public CurvePoint Inverse(CurvePoint p) => Inverse(p, modulo);