示例#1
0
 public static BigInteger Mod(this BigInteger a, BigInteger b)
 {
     return(ModularMath.Modulo(a, b));
 }
示例#2
0
 public static BigInteger ModularInverse(this BigInteger a, BigInteger modulo)
 {
     return(ModularMath.ModularInverse(a, modulo));
 }