<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />

BigInteger

public static readonly BigInteger Five

public static readonly BigInteger Four

public static readonly BigInteger One

public static readonly BigInteger Six

public static readonly BigInteger Ten

public static readonly BigInteger Three

public static readonly BigInteger Two

public static readonly BigInteger Zero

public int BitCount { get; }

public int BitLength { get; }

public int IntValue { get; }

public int IntValueExact { get; }

public long LongValue { get; }

public long LongValueExact { get; }

public int SignValue { get; }

public BigInteger(string value)

public BigInteger(string str, int radix)

public BigInteger(byte[] bytes)

public BigInteger(byte[] bytes, bool bigEndian)

public BigInteger(byte[] bytes, int offset, int length)

public BigInteger(byte[] bytes, int offset, int length, bool bigEndian)

public BigInteger(int sign, byte[] bytes)

public BigInteger(int sign, byte[] bytes, bool bigEndian)

public BigInteger(int sign, byte[] bytes, int offset, int length)

public BigInteger(int sign, byte[] bytes, int offset, int length, bool bigEndian)

public BigInteger(int sizeInBits, Random random)

public BigInteger(int bitLength, int certainty, Random random)

public static BigInteger Arbitrary(int sizeInBits)

public static BigInteger ProbablePrime(int bitLength, Random random)

public static BigInteger ValueOf(int value)

public static BigInteger ValueOf(long value)

public BigInteger Abs()

public BigInteger Add(BigInteger value)

public BigInteger And(BigInteger value)

public BigInteger ClearBit(int n)

public int CompareTo(object obj)

public int CompareTo(BigInteger other)

public bool Equals(BigInteger other)

public BigInteger FlipBit(int n)

public BigInteger Gcd(BigInteger value)

public int GetLengthofByteArray()

public int GetLowestSetBit()

public bool IsProbablePrime(int certainty)

public BigInteger Max(BigInteger value)

public BigInteger Min(BigInteger value)

public BigInteger Negate()

public BigInteger Not()

public BigInteger Or(BigInteger value)

public BigInteger Pow(int exp)

public bool RabinMillerTest(int certainty, Random random)

public BigInteger SetBit(int n)

public BigInteger ShiftLeft(int n)

public BigInteger ShiftRight(int n)

public BigInteger Square()

public bool TestBit(int n)

public byte[] ToByteArray()

public byte[] ToByteArrayUnsigned()

public string ToString(int radix)

public BigInteger Xor(BigInteger value)