inv method

Scalar inv()

Get multiplicative inverse

Implementation

Scalar inv() {
  return Scalar(value.modInverse(order), order);
}