pub fn modpow(base: &BigInt, exp: &BigInt, m: &BigInt) -> BigIntExpand description
Modular exponentiation base^exp mod m with a full BigInt exponent (square-and-multiply, the
exponent’s bits read off by repeated halving).
pub fn modpow(base: &BigInt, exp: &BigInt, m: &BigInt) -> BigIntModular exponentiation base^exp mod m with a full BigInt exponent (square-and-multiply, the
exponent’s bits read off by repeated halving).