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