Skip to content

llModPow

Function Syntax
integer llModPow(
  1. integer Value,
  2. integer Power,
  3. 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).