<PackageReference Include="SSH.NET" Version="2020.0.0-beta1" />

BigInteger

class BigInteger
public static readonly BigInteger One

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 long LongValue { get; }

public int SignValue { get; }

public BigInteger(string value)

public BigInteger(string str, int radix)

public BigInteger(byte[] bytes)

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

public BigInteger(int sign, byte[] bytes)

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

public BigInteger(int sizeInBits, Random random)

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

public static int BitCnt(int i)

public static BigInteger ProbablePrime(int bitLength, Random random)

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 value)

public BigInteger FlipBit(int n)

public BigInteger Gcd(BigInteger value)

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)