<PackageReference Include="SSH.NET" Version="2024.2.0" />

RsaKey

public class RsaKey : Key, IDisposable
public BigInteger D { get; }

public BigInteger DP { get; }

public BigInteger DQ { get; }

public BigInteger Exponent { get; }

public BigInteger InverseQ { get; }

public BigInteger Modulus { get; }

public BigInteger P { get; }

public BigInteger Q { get; }

public RsaKey(SshKeyData publicKeyData)

public RsaKey(byte[] privateKeyData)

public RsaKey(BigInteger modulus, BigInteger exponent, BigInteger d, BigInteger p, BigInteger q, BigInteger inverseQ)

public void Dispose()

protected virtual void Dispose(bool disposing)