<PackageReference Include="SSH.NET" Version="2024.2.0" />
API Differences between 2024.2.0 and 2012.20.12
503 Additions
225 Removals
Renci.SshNet
-
public abstract class AuthenticationMethod : IAuthenticationMethod
-
public abstract class BaseClient : IBaseClient, IDisposable
-
public class CipherInfo
- public Func<byte[], byte[], BlockCipher> Cipher { get; }
- public Func<byte[], byte[], Cipher> Cipher { get; }
- public bool IsAead { get; }
- public CipherInfo(int keySize, Func<byte[], byte[], BlockCipher> cipher)
- public CipherInfo(int keySize, Func<byte[], byte[], Cipher> cipher, bool isAead = false)
-
public class CommandAsyncResult : IAsyncResult
-
public class ConnectionInfo : IConnectionInfoInternal, IConnectionInfo
-
public static class Extensions
-
public abstract class ForwardedPort : IForwardedPort, IDisposable
-
public class ForwardedPortDynamic : ForwardedPort
-
public class ForwardedPortLocal : ForwardedPort
-
public class ForwardedPortRemote : ForwardedPort
-
public class HashInfo
-
public interface IBaseClient : IDisposable
-
public interface IForwardedPort : IDisposable
-
public interface IPrivateKeySource
-
public interface IRemotePathTransformation
-
public interface ISftpClient : IBaseClient, IDisposable
- uint BufferSize { get; set; }
- TimeSpan OperationTimeout { get; set; }
- int ProtocolVersion { get; }
- string WorkingDirectory { get; }
- void AppendAllLines(string path, IEnumerable<string> contents)
- void AppendAllLines(string path, IEnumerable<string> contents, Encoding encoding)
- void AppendAllText(string path, string contents)
- void AppendAllText(string path, string contents, Encoding encoding)
- StreamWriter AppendText(string path)
- StreamWriter AppendText(string path, Encoding encoding)
- IAsyncResult BeginDownloadFile(string path, Stream output)
- IAsyncResult BeginDownloadFile(string path, Stream output, AsyncCallback asyncCallback)
- IAsyncResult BeginDownloadFile(string path, Stream output, AsyncCallback asyncCallback, object state, Action<ulong> downloadCallback = null)
- IAsyncResult BeginListDirectory(string path, AsyncCallback asyncCallback, object state, Action<int> listCallback = null)
- IAsyncResult BeginSynchronizeDirectories(string sourcePath, string destinationPath, string searchPattern, AsyncCallback asyncCallback, object state)
- IAsyncResult BeginUploadFile(Stream input, string path)
- IAsyncResult BeginUploadFile(Stream input, string path, AsyncCallback asyncCallback)
- IAsyncResult BeginUploadFile(Stream input, string path, AsyncCallback asyncCallback, object state, Action<ulong> uploadCallback = null)
- IAsyncResult BeginUploadFile(Stream input, string path, bool canOverride, AsyncCallback asyncCallback, object state, Action<ulong> uploadCallback = null)
- void ChangeDirectory(string path)
- Task ChangeDirectoryAsync(string path, CancellationToken cancellationToken = default)
- void ChangePermissions(string path, short mode)
- SftpFileStream Create(string path)
- SftpFileStream Create(string path, int bufferSize)
- void CreateDirectory(string path)
- Task CreateDirectoryAsync(string path, CancellationToken cancellationToken = default)
- StreamWriter CreateText(string path)
- StreamWriter CreateText(string path, Encoding encoding)
- void Delete(string path)
- Task DeleteAsync(string path, CancellationToken cancellationToken = default)
- void DeleteDirectory(string path)
- Task DeleteDirectoryAsync(string path, CancellationToken cancellationToken = default)
- void DeleteFile(string path)
- Task DeleteFileAsync(string path, CancellationToken cancellationToken)
- void DownloadFile(string path, Stream output, Action<ulong> downloadCallback = null)
- void EndDownloadFile(IAsyncResult asyncResult)
- IEnumerable<ISftpFile> EndListDirectory(IAsyncResult asyncResult)
- IEnumerable<FileInfo> EndSynchronizeDirectories(IAsyncResult asyncResult)
- void EndUploadFile(IAsyncResult asyncResult)
- bool Exists(string path)
- ISftpFile Get(string path)
- SftpFileAttributes GetAttributes(string path)
- DateTime GetLastAccessTime(string path)
- DateTime GetLastAccessTimeUtc(string path)
- DateTime GetLastWriteTime(string path)
- DateTime GetLastWriteTimeUtc(string path)
- SftpFileSystemInformation GetStatus(string path)
- Task<SftpFileSystemInformation> GetStatusAsync(string path, CancellationToken cancellationToken)
- IEnumerable<ISftpFile> ListDirectory(string path, Action<int> listCallback = null)
- IAsyncEnumerable<ISftpFile> ListDirectoryAsync(string path, CancellationToken cancellationToken)
- SftpFileStream Open(string path, FileMode mode)
- SftpFileStream Open(string path, FileMode mode, FileAccess access)
- Task<SftpFileStream> OpenAsync(string path, FileMode mode, FileAccess access, CancellationToken cancellationToken)
- SftpFileStream OpenRead(string path)
- StreamReader OpenText(string path)
- SftpFileStream OpenWrite(string path)
- byte[] ReadAllBytes(string path)
- string[] ReadAllLines(string path)
- string[] ReadAllLines(string path, Encoding encoding)
- string ReadAllText(string path)
- string ReadAllText(string path, Encoding encoding)
- IEnumerable<string> ReadLines(string path)
- IEnumerable<string> ReadLines(string path, Encoding encoding)
- void RenameFile(string oldPath, string newPath)
- void RenameFile(string oldPath, string newPath, bool isPosix)
- Task RenameFileAsync(string oldPath, string newPath, CancellationToken cancellationToken)
- void SetAttributes(string path, SftpFileAttributes fileAttributes)
- void SetLastAccessTime(string path, DateTime lastAccessTime)
- void SetLastAccessTimeUtc(string path, DateTime lastAccessTimeUtc)
- void SetLastWriteTime(string path, DateTime lastWriteTime)
- void SetLastWriteTimeUtc(string path, DateTime lastWriteTimeUtc)
- void SymbolicLink(string path, string linkPath)
- IEnumerable<FileInfo> SynchronizeDirectories(string sourcePath, string destinationPath, string searchPattern)
- void UploadFile(Stream input, string path, Action<ulong> uploadCallback = null)
- void UploadFile(Stream input, string path, bool canOverride, Action<ulong> uploadCallback = null)
- void WriteAllBytes(string path, byte[] bytes)
- void WriteAllLines(string path, IEnumerable<string> contents)
- void WriteAllLines(string path, IEnumerable<string> contents, Encoding encoding)
- void WriteAllLines(string path, string[] contents)
- void WriteAllLines(string path, string[] contents, Encoding encoding)
- void WriteAllText(string path, string contents)
- void WriteAllText(string path, string contents, Encoding encoding)
-
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 NetConfClient : BaseClient
- public NetConfClient(string host, int port, string username, PrivateKeyFile[] keyFiles)
- public NetConfClient(string host, string username, PrivateKeyFile[] keyFiles)
- public NetConfClient(string host, int port, string username, IPrivateKeySource[] keyFiles)
- public NetConfClient(string host, string username, IPrivateKeySource[] keyFiles)
-
public class PasswordAuthenticationMethod : AuthenticationMethod, IDisposable
-
public class PasswordConnectionInfo : ConnectionInfo, IDisposable
- public PasswordConnectionInfo(string host, int port, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)
- public PasswordConnectionInfo(string host, string username, byte[] password)
- public PasswordConnectionInfo(string host, int port, string username, byte[] password)
- public PasswordConnectionInfo(string host, int port, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort)
- public PasswordConnectionInfo(string host, int port, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)
- public PasswordConnectionInfo(string host, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort)
- public PasswordConnectionInfo(string host, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)
- public PasswordConnectionInfo(string host, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)
- public PasswordConnectionInfo(string host, int port, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)
-
public class PrivateKeyAuthenticationMethod : AuthenticationMethod, IDisposable
-
public class PrivateKeyConnectionInfo : ConnectionInfo, IDisposable
- public ICollection<PrivateKeyFile> KeyFiles { get; }
- public PrivateKeyConnectionInfo(string host, string username, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, int port, string username, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword, PrivateKeyFile[] keyFiles)
- public ICollection<IPrivateKeySource> KeyFiles { get; }
- public PrivateKeyConnectionInfo(string host, string username, IPrivateKeySource[] keyFiles)
- public PrivateKeyConnectionInfo(string host, int port, string username, IPrivateKeySource[] keyFiles)
- public PrivateKeyConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, IPrivateKeySource[] keyFiles)
- public PrivateKeyConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, IPrivateKeySource[] keyFiles)
- public PrivateKeyConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, IPrivateKeySource[] keyFiles)
- public PrivateKeyConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, IPrivateKeySource[] keyFiles)
- public PrivateKeyConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword, IPrivateKeySource[] keyFiles)
- public PrivateKeyConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword, IPrivateKeySource[] keyFiles)
-
public class PrivateKeyFile : IPrivateKeySource, IDisposable
-
public static class RemotePathTransformation
-
public class ScpClient : BaseClient
- public IRemotePathTransformation RemotePathTransformation { get; set; }
- public ScpClient(string host, int port, string username, PrivateKeyFile[] keyFiles)
- public ScpClient(string host, string username, PrivateKeyFile[] keyFiles)
- public void Download(string filename, Stream destination)
- public ScpClient(string host, int port, string username, IPrivateKeySource[] keyFiles)
- public ScpClient(string host, string username, IPrivateKeySource[] keyFiles)
- public void Download(string filename, Stream destination)
-
public class Session : ISession, IDisposable
-
public class SftpClient : BaseClient, ISftpClient, IBaseClient, IDisposable
- public SftpClient(string host, int port, string username, PrivateKeyFile[] keyFiles)
- public SftpClient(string host, string username, PrivateKeyFile[] keyFiles)
- public SftpClient(string host, int port, string username, IPrivateKeySource[] keyFiles)
- public SftpClient(string host, string username, IPrivateKeySource[] keyFiles)
- public IAsyncResult BeginDownloadFile(string path, Stream output, AsyncCallback asyncCallback, object state)
- public IAsyncResult BeginListDirectory(string path, AsyncCallback asyncCallback, object state)
- public IAsyncResult BeginDownloadFile(string path, Stream output)
- public IAsyncResult BeginDownloadFile(string path, Stream output, AsyncCallback asyncCallback)
- public IAsyncResult BeginDownloadFile(string path, Stream output, AsyncCallback asyncCallback, object state, Action<ulong> downloadCallback = null)
- public IAsyncResult BeginListDirectory(string path, AsyncCallback asyncCallback, object state, Action<int> listCallback = null)
- public IAsyncResult BeginUploadFile(Stream input, string path, AsyncCallback asyncCallback, object state)
- public IAsyncResult BeginUploadFile(Stream input, string path, bool canOverride, AsyncCallback asyncCallback, object state)
- public IAsyncResult BeginUploadFile(Stream input, string path)
- public IAsyncResult BeginUploadFile(Stream input, string path, AsyncCallback asyncCallback)
- public IAsyncResult BeginUploadFile(Stream input, string path, AsyncCallback asyncCallback, object state, Action<ulong> uploadCallback = null)
- public IAsyncResult BeginUploadFile(Stream input, string path, bool canOverride, AsyncCallback asyncCallback, object state, Action<ulong> uploadCallback = null)
- public Task ChangeDirectoryAsync(string path, CancellationToken cancellationToken = default)
- public Task CreateDirectoryAsync(string path, CancellationToken cancellationToken = default)
- public Task DeleteAsync(string path, CancellationToken cancellationToken = default)
- public Task DeleteDirectoryAsync(string path, CancellationToken cancellationToken = default)
- public void DownloadFile(string path, Stream output)
- public Task DeleteFileAsync(string path, CancellationToken cancellationToken)
- public void DownloadFile(string path, Stream output, Action<ulong> downloadCallback = null)
- public IEnumerable<SftpFile> EndListDirectory(IAsyncResult asyncResult)
- public IEnumerable<ISftpFile> EndListDirectory(IAsyncResult asyncResult)
- public SftpFile Get(string path)
- public Task<bool> ExistsAsync(string path, CancellationToken cancellationToken = default)
- public ISftpFile Get(string path)
- public Task<ISftpFile> GetAsync(string path, CancellationToken cancellationToken)
- public SftpFileSytemInformation GetStatus(string path)
- public IEnumerable<SftpFile> ListDirectory(string path)
- public SftpFileSystemInformation GetStatus(string path)
- public Task<SftpFileSystemInformation> GetStatusAsync(string path, CancellationToken cancellationToken)
- public IEnumerable<ISftpFile> ListDirectory(string path, Action<int> listCallback = null)
- public IAsyncEnumerable<ISftpFile> ListDirectoryAsync(string path, CancellationToken cancellationToken)
- public Task<SftpFileStream> OpenAsync(string path, FileMode mode, FileAccess access, CancellationToken cancellationToken)
- public Task RenameFileAsync(string oldPath, string newPath, CancellationToken cancellationToken)
- public void UploadFile(Stream input, string path)
- public void UploadFile(Stream input, string path, bool canOverride)
- public void UploadFile(Stream input, string path, Action<ulong> uploadCallback = null)
- public void UploadFile(Stream input, string path, bool canOverride, Action<ulong> uploadCallback = null)
-
public class ShellStream : Stream
- public event EventHandler<EventArgs> Closed
- public IAsyncResult BeginExpect(ExpectAction[] expectActions)
- public IAsyncResult BeginExpect(AsyncCallback callback, ExpectAction[] expectActions)
- public IAsyncResult BeginExpect(AsyncCallback callback, object state, ExpectAction[] expectActions)
- public IAsyncResult BeginExpect(TimeSpan timeout, AsyncCallback callback, object state, ExpectAction[] expectActions)
- public IAsyncResult BeginExpect(TimeSpan timeout, int lookback, AsyncCallback callback, object state, ExpectAction[] expectActions)
- public string EndExpect(IAsyncResult asyncResult)
- public void Expect(TimeSpan timeout, int lookback, ExpectAction[] expectActions)
- public string Expect(string text, TimeSpan timeout)
- public string Expect(string text, TimeSpan timeout, int lookback = -1)
- public string Expect(Regex regex, TimeSpan timeout)
- public string Expect(Regex regex, TimeSpan timeout, int lookback = -1)
-
public class SshClient : BaseClient, ISshClient, IBaseClient, IDisposable
- public SshClient(string host, int port, string username, PrivateKeyFile[] keyFiles)
- public SshClient(string host, string username, PrivateKeyFile[] keyFiles)
- public SshClient(string host, int port, string username, IPrivateKeySource[] keyFiles)
- public SshClient(string host, string username, IPrivateKeySource[] keyFiles)
- public Shell CreateShell(Stream input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, string terminalMode, int bufferSize)
- public Shell CreateShell(Stream input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, string terminalMode)
- public Shell CreateShell(Stream input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModes, int bufferSize)
- public Shell CreateShell(Stream input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModes)
- public Shell CreateShell(Encoding encoding, string input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, string terminalMode, int bufferSize)
- public Shell CreateShell(Encoding encoding, string input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, string terminalMode)
- public 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)
- public Shell CreateShell(Encoding encoding, string input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModes)
- public ShellStream CreateShellStream(string terminalName, uint columns, uint rows, uint width, uint height, int bufferSize, KeyValuePair<TerminalModes, uint>[] terminalModeValues)
- public Shell CreateShellNoTerminal(Stream input, Stream output, Stream extendedOutput, int bufferSize = -1)
- public ShellStream CreateShellStream(string terminalName, uint columns, uint rows, uint width, uint height, int bufferSize)
- public ShellStream CreateShellStream(string terminalName, uint columns, uint rows, uint width, uint height, int bufferSize, IDictionary<TerminalModes, uint> terminalModeValues)
- public ShellStream CreateShellStreamNoTerminal(int bufferSize = -1)
-
public class SshCommand : IDisposable
Renci.SshNet.Abstractions
Renci.SshNet.Common
Renci.SshNet.Compression
Renci.SshNet.Connection
Renci.SshNet.Messages
Renci.SshNet.Messages.Authentication
Renci.SshNet.Messages.Connection
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 class EcdsaKey : Key, IDisposable
-
public class ED25519Key : Key, IDisposable
-
public interface IKeyExchange : IDisposable
-
public abstract class Key
-
public abstract class KeyExchange : Algorithm, IKeyExchange, IDisposable
-
public abstract class KeyExchangeDiffieHellman : KeyExchange
-
public class KeyExchangeDiffieHellmanGroup1Sha1 : KeyExchangeDiffieHellman
-
public class KeyExchangeDiffieHellmanGroupExchangeSha256 : KeyExchangeDiffieHellman
-
public class KeyHostAlgorithm : HostAlgorithm
-
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()
- 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(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
-
public abstract class AsymmetricCipher : Cipher
-
public abstract class BlockCipher : SymmetricCipher
- protected readonly int _blockSize
- public int BlockSize { get; }
- protected BlockCipher(byte[] key, int blockSize, CipherMode mode, CipherPadding padding)
- public byte BlockSize { get; }
- protected BlockCipher(byte[] key, byte blockSize, CipherMode mode, CipherPadding padding)
- public abstract int DecryptBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset)
- public abstract int EncryptBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset)
-
public abstract class Cipher
- public abstract byte MinimumSize { get; }
- public virtual int TagSize { get; }
- protected static uint BigEndianToUInt32(byte[] buffer)
- protected static uint BigEndianToUInt32(byte[] buffer, int offset)
- protected static ulong BigEndianToUInt64(byte[] buffer)
- protected static ulong BigEndianToUInt64(byte[] buffer, int offset)
- protected static uint LittleEndianToUInt32(byte[] buffer)
- protected static uint LittleEndianToUInt32(byte[] buffer, int offset)
- protected static ulong LittleEndianToUInt64(byte[] buffer)
- protected static ulong LittleEndianToUInt64(byte[] buffer, int offset)
- protected static void UInt32ToBigEndian(uint number, byte[] buffer)
- protected static void UInt32ToBigEndian(uint number, byte[] buffer, int offset)
- protected static void UInt32ToLittleEndian(uint number, byte[] buffer)
- protected static void UInt32ToLittleEndian(uint number, byte[] buffer, int offset)
- protected static void UInt64ToBigEndian(ulong number, byte[] buffer)
- protected static void UInt64ToBigEndian(ulong number, byte[] buffer, int offset)
- protected static void UInt64ToLittleEndian(ulong number, byte[] buffer)
- protected static void UInt64ToLittleEndian(ulong number, byte[] buffer, int offset)
- public abstract byte[] Decrypt(byte[] input, int offset, int length)
- public abstract byte[] Encrypt(byte[] input, int offset, int length)
-
public abstract class CipherDigitalSignature : DigitalSignature
-
public class HMac<T> : KeyedHashAlgorithm where T : HashAlgorithm
-
public class MD5Hash : HashAlgorithm
-
public class EcdsaDigitalSignature : DigitalSignature, IDisposable
-
public class ED25519DigitalSignature : DigitalSignature, IDisposable
-
public class RsaDigitalSignature : DigitalSignature, IDisposable
-
public class SHA1Hash : HashAlgorithm
-
public class SHA256Hash : HashAlgorithm
-
public abstract class StreamCipher : SymmetricCipher
-
public abstract class SymmetricCipher : Cipher
- public abstract int DecryptBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset)
- public abstract int EncryptBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset)
Renci.SshNet.Security.Cryptography.Ciphers
Renci.SshNet.Security.Cryptography.Ciphers.Paddings
Renci.SshNet.Sftp