multiply method

相乘

Implementation

ECFieldElementFp multiply(ECFieldElementFp b) {
  return ECFieldElementFp(q, (x * b.toBigInteger()) % q);
}