subtract method

相减

Implementation

ECFieldElementFp subtract(ECFieldElementFp b) {
  return ECFieldElementFp(q, (x - b.toBigInteger()) % q);
}