Performs modulus division on a number raised to the power of another number.
Namespace: Renci.SshNet.CommonAssembly: Renci.SshNet (in Renci.SshNet.dll) Version: 0.1.0.0 (1.0.0.0)
Syntax
public static BigInteger ModPow( BigInteger value, BigInteger exponent, BigInteger modulus )
Parameters
- value
- Type: Renci.SshNet.Common BigInteger
The number to raise to the exponent power.
- exponent
- Type: Renci.SshNet.Common BigInteger
The exponent to raise value by.
- modulus
- Type: Renci.SshNet.Common BigInteger
The value to divide valueexponent by.
Return Value
The remainder after dividing valueexponent by modulus.See Also