BigInteger.ModularPow(BigInteger, BigInteger, BigInteger) Method

Raises a number to a power modulo another number.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BigInteger ModularPow(
	BigInteger value,
	BigInteger exponent,
	BigInteger modulus
)

Parameters

value  BigInteger
The number to raise to a power.
exponent  BigInteger
The exponent.
modulus  BigInteger
The modulus.

Return Value

BigInteger
value raised to the power exponent modulo modulus.

See Also