modPow 抽象方法

BigInt modPow(
  1. BigInt exponent,
  2. BigInt modulus
)

返回此整数的 exponent 次方模 modulus 的结果。

exponent 必须是非负数,且 modulus 必须是正数。

实现

BigInt modPow(BigInt exponent, BigInt modulus);