10 instantiations of BigInt
System.Security (10)
system\security\cryptography\bigint.cs (9)
347BigInt dividend = new BigInt(); 349BigInt divisor = new BigInt(); 370BigInt hold = new BigInt(); 451BigInt c = new BigInt(); 452BigInt tmp = new BigInt(); 474BigInt ten = new BigInt(0xA); 475BigInt numerator = new BigInt(); 476BigInt quotient = new BigInt(); 477BigInt remainder = new BigInt();
system\security\cryptography\xml\keyinfo.cs (1)
620BigInt h = new BigInt();
33 references to BigInt
System.Security (33)
system\security\cryptography\bigint.cs (32)
108public static bool operator < (BigInt value1, BigInt value2) { 128public static bool operator > (BigInt value1, BigInt value2) { 148public static bool operator == (BigInt value1, BigInt value2) { 168public static bool operator != (BigInt value1, BigInt value2) { 173if (obj is BigInt) { 174return (this == (BigInt) obj); 191internal static void Add (BigInt a, byte b, ref BigInt c) { 213internal static void Negate (ref BigInt a) { 230internal static void Subtract (BigInt a, BigInt b, ref BigInt c) { 285private static void Multiply (BigInt a, int b, ref BigInt c) { 332internal static void Divide (BigInt numerator, BigInt denominator, ref BigInt quotient, ref BigInt remainder) { 347BigInt dividend = new BigInt(); 349BigInt divisor = new BigInt(); 370BigInt hold = new BigInt(); 399internal void CopyFrom (BigInt a) { 451BigInt c = new BigInt(); 452BigInt tmp = new BigInt(); 474BigInt ten = new BigInt(0xA); 475BigInt numerator = new BigInt(); 476BigInt quotient = new BigInt(); 477BigInt remainder = new BigInt();
system\security\cryptography\xml\keyinfo.cs (1)
620BigInt h = new BigInt();