API Differences between 2024.2.0 and 2024.1.0
87 Additions
40 Removals
Renci.SshNet
-
public interface IBaseClient : IDisposable
-
public interface ISftpClient : IBaseClient, IDisposable
-
public interface ISshClient : IBaseClient, IDisposable
- IEnumerable<ForwardedPort> ForwardedPorts { get; }
- void AddForwardedPort(ForwardedPort port)
- SshCommand CreateCommand(string commandText)
- SshCommand CreateCommand(string commandText, Encoding encoding)
- Shell CreateShell(Stream input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModes, int bufferSize)
- Shell CreateShell(Stream input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModes)
- Shell CreateShell(Stream input, Stream output, Stream extendedOutput)
- Shell CreateShell(Encoding encoding, string input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModes, int bufferSize)
- Shell CreateShell(Encoding encoding, string input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModes)
- Shell CreateShell(Encoding encoding, string input, Stream output, Stream extendedOutput)
- Shell CreateShellNoTerminal(Stream input, Stream output, Stream extendedOutput, int bufferSize = -1)
- ShellStream CreateShellStream(string terminalName, uint columns, uint rows, uint width, uint height, int bufferSize)
- ShellStream CreateShellStream(string terminalName, uint columns, uint rows, uint width, uint height, int bufferSize, IDictionary<TerminalModes, uint> terminalModeValues)
- ShellStream CreateShellStreamNoTerminal(int bufferSize = -1)
- void RemoveForwardedPort(ForwardedPort port)
- SshCommand RunCommand(string commandText)
-
public class PrivateKeyConnectionInfo : ConnectionInfo, IDisposable
-
public class PrivateKeyFile : IPrivateKeySource, IDisposable
-
public class SftpClient : BaseClient, ISftpClient, IBaseClient, IDisposable
Renci.SshNet.Common
Renci.SshNet.Compression
Renci.SshNet.Messages.Transport
Renci.SshNet.Security
-
public class Certificate
-
public class CertificateHostAlgorithm : KeyHostAlgorithm
- public CertificateHostAlgorithm(string name)
- public Certificate Certificate { get; }
- public CertificateHostAlgorithm(string name, Key privateKey, Certificate certificate)
- public CertificateHostAlgorithm(string name, Key privateKey, Certificate certificate, DigitalSignature digitalSignature)
- public CertificateHostAlgorithm(string name, Certificate certificate, IReadOnlyDictionary<string, Func<byte[], KeyHostAlgorithm>> keyAlgorithms)
- public CertificateHostAlgorithm(string name, Certificate certificate, DigitalSignature digitalSignature, IReadOnlyDictionary<string, Func<byte[], KeyHostAlgorithm>> keyAlgorithms)
-
public class DsaKey : Key, IDisposable
-
public abstract class Key
-
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 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(BigInteger modulus, BigInteger exponent, BigInteger d, BigInteger p, BigInteger q, BigInteger inverseQ)
- public RsaKey(BigInteger modulus, BigInteger exponent, BigInteger d, BigInteger p, BigInteger q, BigInteger inverseQ)
-
public sealed class SshKeyData : SshData
Renci.SshNet.Security.Cryptography
Renci.SshNet.Security.Cryptography.Ciphers
Renci.SshNet.Security.Cryptography.Ciphers.Paddings
Renci.SshNet.Sftp