llModPow
Function Syntax
integer llModPow(
- integer Value,
- integer Power,
- integer Modulus
Returns a Value raised to the Power, mod Modulus. ((a**b)%c) b is capped at 0xFFFF (16 bits).
Returns (Value ^ Power) % Modulus. (Value raised to the Power, Modulus). Value is capped at 0xFFFF (16 bits).