API Differences between 2025.1.0 and 2026.0.0
0 Additions
16 Removals
Renci.SshNet
-
public struct DownloadFileProgressReport
-
public interface ISftpClient : IBaseClient, IDisposable
- Task DownloadFileAsync(string path, Stream output, IProgress<DownloadFileProgressReport> downloadProgress, CancellationToken cancellationToken = default)
- Task UploadFileAsync(Stream input, string path, IProgress<UploadFileProgressReport> uploadProgress, CancellationToken cancellationToken = default)
- Task UploadFileAsync(Stream input, string path, bool canOverride, IProgress<UploadFileProgressReport> uploadProgress = null, CancellationToken cancellationToken = default)
-
public class ScpClient : BaseClient
- public bool UseDirectoryFlag { get; set; }
- public ScpClient(ConnectionInfo connectionInfo, IRemotePathTransformation remotePathTransformation)
- public ScpClient(string host, int port, string username, string password, IRemotePathTransformation remotePathTransformation)
- public ScpClient(string host, string username, string password, IRemotePathTransformation remotePathTransformation)
- public ScpClient(string host, int port, string username, IRemotePathTransformation remotePathTransformation, IPrivateKeySource[] keyFiles)
- public ScpClient(string host, string username, IRemotePathTransformation remotePathTransformation, IPrivateKeySource[] keyFiles)
-
public class SftpClient : BaseClient, ISftpClient, IBaseClient, IDisposable
- public Task DownloadFileAsync(string path, Stream output, IProgress<DownloadFileProgressReport> downloadProgress, CancellationToken cancellationToken = default)
- public Task UploadFileAsync(Stream input, string path, IProgress<UploadFileProgressReport> uploadProgress, CancellationToken cancellationToken = default)
- public Task UploadFileAsync(Stream input, string path, bool canOverride, IProgress<UploadFileProgressReport> uploadProgress = null, CancellationToken cancellationToken = default)
-
public struct UploadFileProgressReport
Renci.SshNet.Security.Cryptography
-
public abstract class Cipher
- public virtual int Decrypt(byte[] input, int offset, int length, byte[] output, int outputOffset)
- public virtual int Encrypt(byte[] input, int offset, int length, byte[] output, int outputOffset)