Skip to main content
Go to Latest
File
export function multiply_Mod(a: bigint, b: bigint, m: bigint): bigint { return ((a % m) * (b % m)) % m;}