modPow method

  1. @override
BigInt modPow(
  1. BigInt base,
  2. BigInt exponent,
  3. BigInt modulus
)
override

Computes base to the power of exponent modulo modulus.

Implementation

@override
BigInt modPow(BigInt base, BigInt exponent, BigInt modulus) =>
    base.modPow(exponent, modulus);