@override ECPoint? operator -(ECPoint b) { if (b.isInfinity) { return this; } // Add -b return this + (-b); }