# SSHPlex Class

SSHPlex is a multiplexed class that operates over a single Secure Shell (SSH) connection and allows file transfers using Secure File Transfer Protocol (SFTP) or Secure Copy Protocol (SCP). It can remotely execute commands using SExec or SShell.

## Syntax

```text
ipworksssh.SSHPlex
```

## Remarks

The SSHPlex class combines the functionality of the Secure Copy Protocol (SCP) class, the Secure File Transfer Protocol (SFTP) class, the SExec class, and the SShell class. All operations are performed over a single Secure Shell (SSH) connection.

The asynchronous design of the class allows multiple operations to be performed simultaneously. For example, several SFTP file transfers may be started, and while the files are still transferring, commands may be executed over SExec. This is accomplished through the use of operation Ids to track ongoing and complete operations, and [ChannelType](#channeltype-property-sshplex-class), which allows switching between SFTP, SCP, SExec, and SShell usage.

After establishing a connection, set [ChannelType](#channeltype-property-sshplex-class) to the desired protocol and set any relevant properties for the operation. Calling the desired method will return an operation Id (string) that identifies the operation in progress. A corresponding [SSHPlexOperation](#sshplexoperation-type) will also be added to the [Operations](#operations-property-sshplex-class) collection.

When the operation completes, a corresponding event will fire indicating the success or failure of the operation. Examine the event parameters for further details. For instance, after calling [Upload](#upload-method-sshplex-class), the [UploadComplete](#uploadcomplete-event-sshplex-class) event will fire.

Ongoing operations may be canceled at any time by passing the operation Id to the [CancelOperation](#canceloperation-method-sshplex-class) method.

NOTE: The [DoEvents](#doevents-method-sshplex-class) method must be called frequently to process outstanding events. This is particularly important for SCP and SFTP operations. Call [DoEvents](#doevents-method-sshplex-class) in a loop for best results.

## Authentication

 The [SSHHost](#sshhost-property-sshplex-class) and [SSHPort](#sshport-property-sshplex-class) properties specify which Secure Shell (SSH) server to use. The [SSHUser](#sshuser-property-sshplex-class) and [SSHPassword](#sshpassword-property-sshplex-class) properties allow the client to authenticate itself with the server. The [SSHServerAuthentication](#sshserverauthentication-event-sshplex-class) event or [SSHAcceptServerHostKey](#sshacceptserverhostkey-property-sshplex-class) property allow you to check the server identity. Finally, the [SSHStatus](#sshstatus-event-sshplex-class) event provides information about the SSH handshake.

**Example. Logging On:**

```text
SSHPlexControl.SSHUser = "username"
SSHPlexControl.SSHPassword = "password"
SSHPlexControl.SSHLogon("sshHost", sshPort)
```

## Channel Types

 The [ChannelType](#channeltype-property-sshplex-class) property determines the protocol used by the component and therefore the applicable methods and properties for each channel. Valid values are as follows:

| ChannelType | Description | Applicable Methods | Applicable Properties |
| --- | --- | --- | --- |
| 0 (cstSShell - default) | An interactive shell for command execution | [Execute](#execute-method-sshplex-class) |  |
| 1 (cstSExec) | Command execution using SExec | [Execute](#execute-method-sshplex-class) |  |
| 2 (cstScp) | SCP File Transfer | [Download](#download-method-sshplex-class) [SetDownloadStream](#setdownloadstream-method-sshplex-class) [SetUploadStream](#setuploadstream-method-sshplex-class) [Upload](#upload-method-sshplex-class) | [FilePermissions](#filepermissions-property-sshplex-class) [LocalFile](#localfile-property-sshplex-class) [Overwrite](#overwrite-property-sshplex-class) [RemoteFile](#remotefile-property-sshplex-class) RemotePath |
| 3 (cstSftp) | SFTP File Transfer | [Append](#append-method-sshplex-class) [CreateFile](#createfile-method-sshplex-class) [DeleteFile](#deletefile-method-sshplex-class) [Download](#download-method-sshplex-class) [ListDirectory](#listdirectory-method-sshplex-class) [MakeDirectory](#makedirectory-method-sshplex-class) [RemoveDirectory](#removedirectory-method-sshplex-class) [RenameFile](#renamefile-method-sshplex-class) [SetDownloadStream](#setdownloadstream-method-sshplex-class) [SetUploadStream](#setuploadstream-method-sshplex-class) [UpdateFileAttributes](#updatefileattributes-method-sshplex-class) [Upload](#upload-method-sshplex-class) | [DirList](#dirlist-property-sshplex-class) [FileAttributes](#fileattributes-property-sshplex-class) [LocalFile](#localfile-property-sshplex-class) [Overwrite](#overwrite-property-sshplex-class) [RemoteFile](#remotefile-property-sshplex-class) RemotePath [StartByte](#startbyte-property-sshplex-class) |

NOTE: [CancelOperation](#canceloperation-method-sshplex-class) and other methods not explicitly listed here are applicable to all channel types.

## Listing Files and Folders

[ListDirectory](#listdirectory-method-sshplex-class) lists files and folders from the path specified by RemotePath.

The directory entries are provided through the [DirList](#dirlist-event-sshplex-class) event and also through the [DirList](#dirlist-property-sshplex-class) property.

```text
SSHPlexControl.RemoteFile = ""; //Clear filemask
SSHPlexControl.RemotePath = "MyFolder";
string opId = SSHPlexControl.ListDirectory();
// ListDirectory operates async so we must wait for it to finish
while (SSHPlexControl.Operations.Keys.Contains(opId)) {
    SSHPlexControl.DoEvents();
}
for (int i = 0; i < SSHPlexControl.DirList.Count; i++)
{
  Console.WriteLine(SSHPlexControl.DirList[i].FileName);
  Console.WriteLine(SSHPlexControl.DirList[i].FileSize);
  Console.WriteLine(SSHPlexControl.DirList[i].FileTime);
  Console.WriteLine(SSHPlexControl.DirList[i].IsDir);
}
```

The [RemoteFile](#remotefile-property-sshplex-class) property may also be used as a filemask when listing files. For instance:

```text
SSHPlexControl.RemoteFile = "*.txt";
SSHPlexControl.ListDirectory();
```

NOTE: Because [RemoteFile](#remotefile-property-sshplex-class) is used as a filemask, ensure that you clear or reset this value before calling [ListDirectory](#listdirectory-method-sshplex-class)

## Downloading Files

The [Download](#download-method-sshplex-class) method downloads a specific file.

Set [RemoteFile](#remotefile-property-sshplex-class) to the name of the file to download before calling this method. If [RemoteFile](#remotefile-property-sshplex-class) specifies only a filename, it will be downloaded from the path specified by RemotePath. [RemoteFile](#remotefile-property-sshplex-class) may also be set to an absolute path.

The file will be downloaded to the stream specified (if any) by [SetDownloadStream](#setdownloadstream-method-sshplex-class). If a stream is not specified and [LocalFile](#localfile-property-sshplex-class) is set, the file will be saved to the specified location.

**Code Example**

```text
SSHPlexControl.Localfile = "C:\localfile.txt";
SSHPlexControl.RemoteFile = "remotefile.txt";
string operationId = SSHPlexControl.Download();

// Use Path in RemoteFile
SSHPlexControl.Localfile = "C:\localfile2.txt";
SSHPlexControl.RemoteFile = "folder/remotefile2.txt";
string operationId = SSHPlexControl.Download();
```

**Resuming Downloads**

The class also supports resuming failed downloads by using the [StartByte](#startbyte-property-sshplex-class) property. If a download is interrupted or canceled, set [StartByte](#startbyte-property-sshplex-class) to the appropriate offset before calling this method to resume the download.

```text
string localFile = "C:\localfile.txt";
SSHPlexControl.Localfile = localFile;
SSHPlexControl.RemoteFile = "remotefile.txt";
string operationId = SSHPlexControl.Download();

// Cancel Download using the CancelOperation method
SSHPlexControl.CancelOperation(operationId);

// Get the size of the partially downloaded temp file and set StartByte
SSHPlexControl.StartByte = new FileInfo(localFile).Length;

// Resume download
string operationId = SSHPlexControl.Download();
```

## Uploading Files

The [Upload](#upload-method-sshplex-class) method is used to upload files. Set [LocalFile](#localfile-property-sshplex-class) to the name of the file to upload before calling this method. If [SetUploadStream](#setuploadstream-method-sshplex-class) is used to set an upload stream, the data to upload is taken from the stream instead.

[RemoteFile](#remotefile-property-sshplex-class) should be set to either a relative or absolute path. If [RemoteFile](#remotefile-property-sshplex-class) is not an absolute path, it will be uploaded relative to RemotePath.

**Code Example**

```text
SSHPlexControl.Localfile = "C:\localfile.txt";
SSHPlexControl.RemoteFile = "remotefile.txt";
string operationId = SSHPlexControl.Upload();

// Use Path in RemoteFile
SSHPlexControl.Localfile = "C:\localfile2.txt";
SSHPlexControl.RemoteFile = "folder/remotefile2.txt";
string operationId = SSHPlexControl.Upload();
```

**Resuming Uploads**

The class also supports resuming failed uploads by using the [StartByte](#startbyte-property-sshplex-class) property. If an upload is interrupted or canceled, set [StartByte](#startbyte-property-sshplex-class) to the appropriate offset before calling this method to resume the upload.

```text
string localFile = "C:\localfile.txt";
SSHPlexControl.Localfile = localFile;
SSHPlexControl.RemoteFile = "remotefile.txt";
string operationId = SSHPlexControl.Upload();

// Cancel Upload using the CancelOperation method
SSHPlexControl.CancelOperation(operationId);

// Get the size of the partially uploaded temp file and set StartByte
SSHPlexControl.StartByte = SSHPlexControl.FileAttributes.Size;

// Resume upload
string operationId = SSHPlexControl.Upload();
```

## Remote Execution

Executing commands on a remote host is done by using the *cstSExec* or *cstSShell* [ChannelType](#channeltype-property-sshplex-class).

To execute a command, simply call the [Execute](#execute-method-sshplex-class) method with the command you wish to execute.

The output of the command is returned through the [Stdout](#stdout-event-sshplex-class) event. Errors during command execution (the stderr stream) are given by the [Stderr](#stderr-event-sshplex-class) event.

## Property List

*The following is the full list of the properties of the class with short descriptions. Click on the links for further details.*

|  |  |
| --- | --- |
| [ChannelType](#channeltype-property-sshplex-class) | Specifies the channel type to be used by the class. |
| [Connected](#connected-property-sshplex-class) | Whether the class is connected. |
| [DirList](#dirlist-property-sshplex-class) | Collection of entries resulting in the last directory listing. |
| [FileAttributes](#fileattributes-property-sshplex-class) | The attributes of the RemoteFile . |
| [FilePermissions](#filepermissions-property-sshplex-class) | The file permissions for the RemoteFile . |
| [Firewall](#firewall-property-sshplex-class) | A set of properties related to firewall access. |
| [LocalFile](#localfile-property-sshplex-class) | The path to a local file for upload or download. |
| [LocalHost](#localhost-property-sshplex-class) | The name of the local host or user-assigned IP interface through which connections are initiated or accepted. |
| [LocalPort](#localport-property-sshplex-class) | The TCP port in the local host where the class binds. |
| [Operations](#operations-property-sshplex-class) | This collection contains all running operations. |
| [Overwrite](#overwrite-property-sshplex-class) | The value indicating Whether or not the class should overwrite files during transfer. |
| [RemoteFile](#remotefile-property-sshplex-class) | The name of the remote file for uploading, downloading, and so on. |
| [SSHAcceptServerHostKey](#sshacceptserverhostkey-property-sshplex-class) | Instructs the class to accept the server host key that matches the supplied key. |
| [SSHAuthMode](#sshauthmode-property-sshplex-class) | The authentication method to be used with the class when calling SSHLogon . |
| [SSHCert](#sshcert-property-sshplex-class) | A certificate to be used for authenticating the SSHUser . |
| [SSHCompressionAlgorithms](#sshcompressionalgorithms-property-sshplex-class) | The comma-separated list containing all allowable compression algorithms. |
| [SSHEncryptionAlgorithms](#sshencryptionalgorithms-property-sshplex-class) | The comma-separated list containing all allowable encryption algorithms. |
| [SSHHost](#sshhost-property-sshplex-class) | The address of the Secure Shell (SSH) host. |
| [SSHPassword](#sshpassword-property-sshplex-class) | The password for Secure Shell (SSH) password-based authentication. |
| [SSHPort](#sshport-property-sshplex-class) | The port on the Secure Shell (SSH) server where the SSH service is running; by default, 22. |
| [SSHUser](#sshuser-property-sshplex-class) | The username for Secure Shell (SSH) authentication. |
| [StartByte](#startbyte-property-sshplex-class) | The offset in bytes at which to begin the upload or download. |
| [Timeout](#timeout-property-sshplex-class) | This property includes the timeout for the class. |

## Method List

*The following is the full list of the methods of the class with short descriptions. Click on the links for further details.*

|  |  |
| --- | --- |
| [Append](#append-method-sshplex-class) | Appends the data from a local file; to a remote file using SFTP. |
| [CancelOperation](#canceloperation-method-sshplex-class) | Cancels the operation specified by OperationId . |
| [ChangeRemotePath](#changeremotepath-method-sshplex-class) | This method changes the current path on the FTP server. |
| [CheckFileExists](#checkfileexists-method-sshplex-class) | Returns True if the file specified by RemoteFile exists on the remote server. |
| [Config](#config-method-sshplex-class) | Sets or retrieves a configuration setting. |
| [Connect](#connect-method-sshplex-class) | Connects to the Secure Shell (SSH) host without logging in. |
| [CreateFile](#createfile-method-sshplex-class) | Creates a file on the remote server using SFTP. |
| [DeleteFile](#deletefile-method-sshplex-class) | Deletes a file on the remote server using SFTP. |
| [Disconnect](#disconnect-method-sshplex-class) | Disconnects from the server without first logging off. |
| [DoEvents](#doevents-method-sshplex-class) | This method processes events from the internal message queue. |
| [Download](#download-method-sshplex-class) | Download a RemoteFile using SFTP or SCP. |
| [Execute](#execute-method-sshplex-class) | Executes a specified command on the remote host. |
| [Interrupt](#interrupt-method-sshplex-class) | This method interrupts the current method. |
| [ListDirectory](#listdirectory-method-sshplex-class) | Lists the current directory specified by RemotePath on a server using secure file transfer protocol (SFTP). |
| [MakeDirectory](#makedirectory-method-sshplex-class) | Creates a directory on the remote server using secure file transfer protocol (SFTP). |
| [QueryFileAttributes](#queryfileattributes-method-sshplex-class) | Queries the server for the attributes of RemoteFile . |
| [QueryRemotePath](#queryremotepath-method-sshplex-class) | This queries the server for the current path. |
| [RemoveDirectory](#removedirectory-method-sshplex-class) | Removes a directory on the remote server using secure file transfer protocol (SFTP). |
| [RenameFile](#renamefile-method-sshplex-class) | Changes the name of a file on the remote server using secure file transfer protocol (SFTP). |
| [SendCommand](#sendcommand-method-sshplex-class) | Sends the specified command to the remote host. |
| [SendStdinBytes](#sendstdinbytes-method-sshplex-class) | Sends binary data to the remote host. |
| [SendStdinText](#sendstdintext-method-sshplex-class) | Sends text to the remote host. |
| [SetDownloadStream](#setdownloadstream-method-sshplex-class) | Sets the stream to which the downloaded data from the server will be written. |
| [SetUploadStream](#setuploadstream-method-sshplex-class) | Sets the stream from which the class will read data to upload to the server. |
| [SSHLogoff](#sshlogoff-method-sshplex-class) | Logs off from the Secure Shell (SSH) server. |
| [SSHLogon](#sshlogon-method-sshplex-class) | Logs on to the SSHHost using the current SSHUser and SSHPassword . |
| [UpdateFileAttributes](#updatefileattributes-method-sshplex-class) | Instructs the class to send the FileAttributes to the server using secure file transfer protocol (SFTP). |
| [Upload](#upload-method-sshplex-class) | Uploads a file specified by LocalFile using secure copy protocol (SCP) or secure file transfer protocol (SFTP). |

## Event List

*The following is the full list of the events fired by the class with short descriptions. Click on the links for further details.*

|  |  |
| --- | --- |
| [AppendComplete](#appendcomplete-event-sshplex-class) | Fired when an append operation completes. |
| [Connected](#connected-event-sshplex-class) | Fired immediately after a connection completes (or fails). |
| [ConnectionStatus](#connectionstatus-event-sshplex-class) | Fired to indicate changes in the connection state. |
| [CreateFileComplete](#createfilecomplete-event-sshplex-class) | Fired when a CreateFile operation completes (or fails). |
| [DeleteFileComplete](#deletefilecomplete-event-sshplex-class) | Fired when a DeleteFile operation completes (or fails). |
| [DirList](#dirlist-event-sshplex-class) | Fired when a directory entry is received. |
| [Disconnected](#disconnected-event-sshplex-class) | Fired when a connection is closed. |
| [DownloadComplete](#downloadcomplete-event-sshplex-class) | Fired when a download operation completes (or fails). |
| [EndTransfer](#endtransfer-event-sshplex-class) | Fired when a file completes downloading or uploading. |
| [Error](#error-event-sshplex-class) | Fired when errors occur during data delivery. |
| [ExecuteComplete](#executecomplete-event-sshplex-class) | Fired when an execute operation completes (or fails). |
| [ListDirectoryComplete](#listdirectorycomplete-event-sshplex-class) | Fired when a ListDirectory operation completes (or fails). |
| [Log](#log-event-sshplex-class) | Fired once for each log message. |
| [MakeDirectoryComplete](#makedirectorycomplete-event-sshplex-class) | Fired when a MakeDirectory operation completes (or fails). |
| [RemoveDirectoryComplete](#removedirectorycomplete-event-sshplex-class) | Fired when a RemoveDirectory operation completes (or fails). |
| [RenameFileComplete](#renamefilecomplete-event-sshplex-class) | Fired when a RenameFile operation completes (or fails). |
| [SSHCustomAuth](#sshcustomauth-event-sshplex-class) | Fired when the class is doing a custom authentication. |
| [SSHKeyboardInteractive](#sshkeyboardinteractive-event-sshplex-class) | Fired when the class receives a request for user input from the server. |
| [SSHServerAuthentication](#sshserverauthentication-event-sshplex-class) | Fired after the server presents its public key to the client. |
| [SSHStatus](#sshstatus-event-sshplex-class) | Fired to track the progress of the secure connection. |
| [StartTransfer](#starttransfer-event-sshplex-class) | Fired when a file starts downloading or uploading. |
| [Stderr](#stderr-event-sshplex-class) | Fired when data (complete lines) come in through Stderr. |
| [Stdout](#stdout-event-sshplex-class) | Fired when data (complete lines) come in through Stdout. |
| [Transfer](#transfer-event-sshplex-class) | Fired during file download or upload. |
| [UpdateFileAttributesComplete](#updatefileattributescomplete-event-sshplex-class) | Fired when a UpdateFileAttributes operation completes (or fails). |
| [UploadComplete](#uploadcomplete-event-sshplex-class) | Fired when an upload operation completes (or fails). |

## Config Settings

*The following is a list of config settings for the class with short descriptions. Click on the links for further details.*

|  |  |
| --- | --- |
| [AllowBackslashInName](#AllowBackslashInName) | Whether backslashes are allowed in folder and file names. |
| [AsyncTransfer](#AsyncTransfer) | Controls whether simultaneous requests are made to read or write files. |
| [AttrAccessTime](#AttrAccessTime) | Can be queried for the AccessTime file attribute during the DirList event. |
| [AttrCreationTime](#AttrCreationTime) | Can be queried for the CreationTime file attribute during the DirList event. |
| [AttrFileType](#AttrFileType) | Can be queried for the FileType file attribute during the DirList event. |
| [AttrGroupId](#AttrGroupId) | Can be queried for the GroupId file attribute during the DirList event. |
| [AttrLinkCount](#AttrLinkCount) | Can be queried for the LinkCount file attribute during the DirList event. |
| [AttrOwnerId](#AttrOwnerId) | Can be queried for the OwnerId file attribute during the DirList event. |
| [AttrPermission](#AttrPermission) | Can be queried for the Permissions file attribute during the DirList event. |
| [CheckFileHash](#CheckFileHash) | Compares a server-computed hash with a hash calculated locally. |
| [DisableRealPath](#DisableRealPath) | Controls whether or not the SSH_FXP_REALPATH request is sent. |
| [ExcludeFileMask](#ExcludeFileMask) | Specifies a file mask for excluding files in directory listings. |
| [ExecFallbackCommand](#ExecFallbackCommand) | Specifies the fallback command to execute if the class fails to start the SFTP subsystem. |
| [FileMaskDelimiter](#FileMaskDelimiter) | Specifies a delimiter to use for setting multiple file masks in the RemoteFile property. |
| [FiletimeFormat](#FiletimeFormat) | Specifies the format to use when returning filetime strings. |
| [ForceMakeDirectory](#ForceMakeDirectory) | Controls whether calls to make a directory always attempt to create the directory on the server. |
| [FreeSpace](#FreeSpace) | The free space on the remote server in bytes. |
| [GetSpaceInfo](#GetSpaceInfo) | Queries the server for drive usage information. |
| [GetSymlinkAttrs](#GetSymlinkAttrs) | Whether to get the attributes of the symbolic link, or the resource pointed to by the link. |
| [IgnoreFileMaskCasing](#IgnoreFileMaskCasing) | Controls whether or not the file mask is case sensitive. |
| [LocalEOL](#LocalEOL) | When TransferMode is set, this specifies the line ending for the local system. |
| [LogSFTPFileData](#LogSFTPFileData) | Whether SFTP file data is present in Debug logs. |
| [MaskSensitiveData](#MaskSensitiveData) | Masks passwords in logs. |
| [MaxFileData](#MaxFileData) | Specifies the maximum payload size of an SFTP packet. |
| [MaxOutstandingPackets](#MaxOutstandingPackets) | Sets the maximum number of simultaneous read or write requests allowed. |
| [NegotiatedProtocolVersion](#NegotiatedProtocolVersion) | The negotiated SFTP version. |
| [NormalizeRemotePath](#NormalizeRemotePath) | Whether to normalize the RemotePath. |
| [PreserveFileTime](#PreserveFileTime) | Preserves the file's timestamps during transfer. |
| [ProtocolVersion](#ProtocolVersion) | The highest allowable SFTP version to use. |
| [ReadLink](#ReadLink) | This settings returns the target of a specified symbolic link. |
| [RealPathControlFlag](#RealPathControlFlag) | Specifies the control-byte field sent in the SSH_FXP_REALPATH request. |
| [RealTimeUpload](#RealTimeUpload) | Enables real time uploading. |
| [RealTimeUploadAgeLimit](#RealTimeUploadAgeLimit) | The age limit in seconds when using RealTimeUpload. |
| [ServerEOL](#ServerEOL) | When TransferMode is set, this specifies the line ending for the remote system. |
| [SimultaneousTransferLimit](#SimultaneousTransferLimit) | The maximum number of simultaneous file transfers. |
| [TotalSpace](#TotalSpace) | The total space on the remote server in bytes. |
| [TransferMode](#TransferMode) | The transfer mode (ASCII or Binary). |
| [TransferredDataLimit](#TransferredDataLimit) | Specifies the maximum number of bytes to download from the remote file. |
| [UseFxpStat](#UseFxpStat) | Whether SSH_FXP_STAT is sent. |
| [DirectoryPermissions](#DirectoryPermissions) | The permissions of folders created on the remote host. |
| [LastAccessedTime](#LastAccessedTime) | The last accessed time of the remote file. |
| [LastModifiedTime](#LastModifiedTime) | The last modified time of the remote file. |
| [PreserveFileTime](#PreserveFileTime) | Preserves the file's modified time during transfer. |
| [RecursiveMode](#RecursiveMode) | If set to true the class will recursively upload or download files. |
| [ServerResponseWindow](#ServerResponseWindow) | The time to wait for a server response in milliseconds. |
| [DisconnectOnChannelClose](#DisconnectOnChannelClose) | Whether to automatically close the connection when a channel is closed. |
| [EncodedTerminalModes](#EncodedTerminalModes) | The terminal mode to set when communicating with the SSH host. |
| [FallbackKeyboardAuth](#FallbackKeyboardAuth) | Whether to attempt keyboard authorization after another authorization method has failed. |
| [ShellPrompt](#ShellPrompt) | The character sequence of the prompt on the SSH host to wait for. |
| [StdInFile](#StdInFile) | The file to use as Stdin data. |
| [StripANSI](#StripANSI) | Whether to remove ANSI escape sequences. |
| [TerminalHeight](#TerminalHeight) | The height of the terminal display. |
| [TerminalModes](#TerminalModes) | The terminal mode to set when communicating with the SSH host. |
| [TerminalType](#TerminalType) | The terminal type the class will use when connecting to a server. |
| [TerminalUsePixel](#TerminalUsePixel) | Whether the terminal's dimensions are in columns/rows or pixels. |
| [TerminalWidth](#TerminalWidth) | The width of the terminal display. |
| [UpdateTerminalSize](#UpdateTerminalSize) | Used to update the terminal size. |
| [DisconnectOnChannelClose](#DisconnectOnChannelClose) | Whether to automatically close the connection when a channel is closed. |
| [EncodedTerminalModes](#EncodedTerminalModes) | The terminal mode to set when communicating with the SSH host. |
| [StdInFile](#StdInFile) | The file to use as Stdin data. |
| [TerminalHeight](#TerminalHeight) | The height of the terminal display. |
| [TerminalModes](#TerminalModes) | The terminal mode to set when communicating with the SSH host. |
| [TerminalUsePixel](#TerminalUsePixel) | Whether the terminal's dimensions are in columns/rows or pixels. |
| [TerminalWidth](#TerminalWidth) | The width of the terminal display. |
| [UseTerminal](#UseTerminal) | Whether to executes commands within a pseudo-terminal. |
| [ChannelDataEOL\[ChannelId\]](#ChannelDataEOL[ChannelId]) | Used to break the incoming data stream into chunks. |
| [ChannelDataEOLFound\[ChannelId\]](#ChannelDataEOLFound[ChannelId]) | Determines if ChannelDataEOL was found. |
| [ClientSSHVersionString](#ClientSSHVersionString) | The SSH version string used by the class. |
| [ConnectAndLogin](#ConnectAndLogin) | Whether the class performs a full SSH login. |
| [DoNotRepeatAuthMethods](#DoNotRepeatAuthMethods) | Whether the class will repeat authentication methods during multifactor authentication. |
| [EnablePageantAuth](#EnablePageantAuth) | Whether to use a key stored in Pageant to perform client authentication. |
| [KerberosDelegation](#KerberosDelegation) | If true, asks for credentials with delegation enabled during authentication. |
| [KerberosRealm](#KerberosRealm) | The fully qualified domain name of the Kerberos Realm to use for GSSAPI authentication. |
| [KerberosSPN](#KerberosSPN) | The Kerberos Service Principal Name of the SSH host. |
| [KeyRenegotiationThreshold](#KeyRenegotiationThreshold) | Sets the threshold for the SSH Key Renegotiation. |
| [LogLevel](#LogLevel) | Specifies the level of detail that is logged. |
| [MaxChannelDataLength\[ChannelId\]](#MaxChannelDataLength[ChannelId]) | The maximum amount of data to accumulate when no ChannelDataEOL is found. |
| [MaxPacketSize](#MaxPacketSize) | The maximum packet size of the channel, in bytes. |
| [MaxWindowSize](#MaxWindowSize) | The maximum window size allowed for the channel, in bytes. |
| [NegotiatedStrictKex](#NegotiatedStrictKex) | Returns whether strict key exchange was negotiated to be used. |
| [PasswordPrompt](#PasswordPrompt) | The text of the password prompt used in keyboard-interactive authentication. |
| [PreferredDHGroupBits](#PreferredDHGroupBits) | The size (in bits) of the preferred modulus (p) to request from the server. |
| [RecordLength](#RecordLength) | The length of received data records. |
| [ServerSSHVersionString](#ServerSSHVersionString) | The remote host's SSH version string. |
| [SignedSSHCert](#SignedSSHCert) | The CA signed client public key used when authenticating. |
| [SSHAcceptAnyServerHostKey](#SSHAcceptAnyServerHostKey) | If set the class will accept any key presented by the server. |
| [SSHAcceptServerCAKey](#SSHAcceptServerCAKey) | The CA public key that signed the server's host key. |
| [SSHAcceptServerHostKeyFingerPrint](#SSHAcceptServerHostKeyFingerPrint) | The fingerprint(s) of the server host keys to accept. |
| [SSHFingerprintEncoding](#SSHFingerprintEncoding) | Specifies the encoding used when displaying the SSH host key fingerprint. |
| [SSHFingerprintHashAlgorithm](#SSHFingerprintHashAlgorithm) | The algorithm used to calculate the fingerprint. |
| [SSHFingerprintMD5](#SSHFingerprintMD5) | The server hostkey's MD5 fingerprint. |
| [SSHFingerprintSHA1](#SSHFingerprintSHA1) | The server hostkey's SHA1 fingerprint. |
| [SSHFingerprintSHA256](#SSHFingerprintSHA256) | The server hostkey's SHA256 fingerprint. |
| [SSHKeepAliveCountMax](#SSHKeepAliveCountMax) | The maximum number of keep alive packets to send without a response. |
| [SSHKeepAliveInterval](#SSHKeepAliveInterval) | The interval between keep alive packets. |
| [SSHKeyExchangeAlgorithms](#SSHKeyExchangeAlgorithms) | Specifies the supported key exchange algorithms. |
| [SSHKeyRenegotiate](#SSHKeyRenegotiate) | Causes the class to renegotiate the SSH keys. |
| [SSHMacAlgorithms](#SSHMacAlgorithms) | Specifies the supported Mac algorithms. |
| [SSHPubKeyAuthSigAlgorithms](#SSHPubKeyAuthSigAlgorithms) | Specifies the enabled signature algorithms that may be used when attempting public key authentication. |
| [SSHPublicKeyAlgorithms](#SSHPublicKeyAlgorithms) | Specifies the supported public key algorithms for the server's public key. |
| [SSHVersionPattern](#SSHVersionPattern) | The pattern used to match the remote host's version string. |
| [TryAllAvailableAuthMethods](#TryAllAvailableAuthMethods) | If set to true, the class will try all available authentication methods. |
| [UseStrictKeyExchange](#UseStrictKeyExchange) | Specifies how strict key exchange is supported. |
| [WaitForChannelClose](#WaitForChannelClose) | Whether to wait for channels to be closed before disconnected. |
| [WaitForServerDisconnect](#WaitForServerDisconnect) | Whether to wait for the server to close the connection. |
| [CloseStreamAfterTransfer](#CloseStreamAfterTransfer) | If true, the class will close the upload or download stream after the transfer. |
| [ConnectionTimeout](#ConnectionTimeout) | Sets a separate timeout value for establishing a connection. |
| [FirewallAutoDetect](#FirewallAutoDetect) | Tells the class whether or not to automatically detect and use firewall system settings, if available. |
| [FirewallHost](#FirewallHost) | Name or IP address of firewall (optional). |
| [FirewallHTTPVersion](#FirewallHTTPVersion) | The HTTP version to be used when connecting through a tunneling proxy. |
| [FirewallListener](#FirewallListener) | If true, the class binds to a SOCKS firewall as a server (TCPClient only). |
| [FirewallPassword](#FirewallPassword) | Password to be used if authentication is to be used when connecting through the firewall. |
| [FirewallPort](#FirewallPort) | The TCP port for the FirewallHost;. |
| [FirewallType](#FirewallType) | Determines the type of firewall to connect through. |
| [FirewallUser](#FirewallUser) | A user name if authentication is to be used connecting through a firewall. |
| [KeepAliveInterval](#KeepAliveInterval) | The retry interval, in milliseconds, to be used when a TCP keep-alive packet is sent and no response is received. |
| [KeepAliveTime](#KeepAliveTime) | The inactivity time in milliseconds before a TCP keep-alive packet is sent. |
| [Linger](#Linger) | When set to True, connections are terminated gracefully. |
| [LingerTime](#LingerTime) | Time in seconds to have the connection linger. |
| [LocalHost](#LocalHost) | The name of the local host through which connections are initiated or accepted. |
| [LocalPort](#LocalPort) | The port in the local host where the class binds. |
| [MaxLineLength](#MaxLineLength) | The maximum amount of data to accumulate when no EOL is found. |
| [MaxTransferRate](#MaxTransferRate) | The transfer rate limit in bytes per second. |
| [ProxyExceptionsList](#ProxyExceptionsList) | A semicolon separated list of hosts and IPs to bypass when using a proxy. |
| [TCPKeepAlive](#TCPKeepAlive) | Determines whether or not the keep alive socket option is enabled. |
| [TcpNoDelay](#TcpNoDelay) | Whether or not to delay when sending packets. |
| [UseIPv6](#UseIPv6) | Whether to use IPv6. |
| [UseNTLMv2](#UseNTLMv2) | Whether to use NTLM V2. |
| [AbsoluteTimeout](#AbsoluteTimeout) | Determines whether timeouts are inactivity timeouts or absolute timeouts. |
| [FirewallData](#FirewallData) | Used to send extra data to the firewall. |
| [InBufferSize](#InBufferSize) | The size in bytes of the incoming queue of the socket. |
| [OutBufferSize](#OutBufferSize) | The size in bytes of the outgoing queue of the socket. |
| [BuildInfo](#BuildInfo) | Information about the product's build. |
| [GUIAvailable](#GUIAvailable) | Whether or not a message loop is available for processing events. |
| [LicenseInfo](#LicenseInfo) | Information about the current license. |
| [MaskSensitiveData](#MaskSensitiveData) | Whether sensitive data is masked in log messages. |
| [UseDaemonThreads](#UseDaemonThreads) | Whether threads created by the class are daemon threads. |
| [UseFIPSCompliantAPI](#UseFIPSCompliantAPI) | Tells the class whether or not to use FIPS certified APIs. |
| [UseInternalSecurityAPI](#UseInternalSecurityAPI) | Whether or not to use the system security libraries or an internal implementation. |
| [UseVirtualThreads](#UseVirtualThreads) | Whether threads created by the class use virtual threads instead of platform threads. |

# ChannelType Property ([SSHPlex](#sshplex-class) Class)

Specifies the channel type to be used by the class.

## Syntax

```text
public int getChannelType();
public void setChannelType(int channelType);

Enumerated values:
  public final static int cstSShell = 0;
  public final static int cstSExec = 1;
  public final static int cstScp = 2;
  public final static int cstSftp = 3;
```

## Default Value

0

## Remarks

The ChannelType property determines the protocol used by the component and therefore the applicable methods and properties for each channel. Valid values are as follows:

| ChannelType | Description | Applicable Methods | Applicable Properties |
| --- | --- | --- | --- |
| 0 (cstSShell - default) | An interactive shell for command execution | [Execute](#execute-method-sshplex-class) |  |
| 1 (cstSExec) | Command execution using SExec | [Execute](#execute-method-sshplex-class) |  |
| 2 (cstScp) | SCP File Transfer | [Download](#download-method-sshplex-class) [SetDownloadStream](#setdownloadstream-method-sshplex-class) [SetUploadStream](#setuploadstream-method-sshplex-class) [Upload](#upload-method-sshplex-class) | [FilePermissions](#filepermissions-property-sshplex-class) [LocalFile](#localfile-property-sshplex-class) [Overwrite](#overwrite-property-sshplex-class) [RemoteFile](#remotefile-property-sshplex-class) RemotePath |
| 3 (cstSftp) | SFTP File Transfer | [Append](#append-method-sshplex-class) [CreateFile](#createfile-method-sshplex-class) [DeleteFile](#deletefile-method-sshplex-class) [Download](#download-method-sshplex-class) [ListDirectory](#listdirectory-method-sshplex-class) [MakeDirectory](#makedirectory-method-sshplex-class) [RemoveDirectory](#removedirectory-method-sshplex-class) [RenameFile](#renamefile-method-sshplex-class) [SetDownloadStream](#setdownloadstream-method-sshplex-class) [SetUploadStream](#setuploadstream-method-sshplex-class) [UpdateFileAttributes](#updatefileattributes-method-sshplex-class) [Upload](#upload-method-sshplex-class) | [DirList](#dirlist-property-sshplex-class) [FileAttributes](#fileattributes-property-sshplex-class) [LocalFile](#localfile-property-sshplex-class) [Overwrite](#overwrite-property-sshplex-class) [RemoteFile](#remotefile-property-sshplex-class) RemotePath [StartByte](#startbyte-property-sshplex-class) |

NOTE: [CancelOperation](#canceloperation-method-sshplex-class) and other methods not explicitly listed here are applicable to all channel types.

# Connected Property ([SSHPlex](#sshplex-class) Class)

Whether the class is connected.

## Syntax

```text
public boolean isConnected();
```

## Default Value

False

## Remarks

This property is used to determine whether or not the class is connected to the remote host. Use the [Connect](#connect-method-sshplex-class) and [Disconnect](#disconnect-method-sshplex-class) methods to manage the connection.

This property is read-only and not available at design time.

# DirList Property ([SSHPlex](#sshplex-class) Class)

Collection of entries resulting in the last directory listing.

## Syntax

```text
public DirEntryList getDirList();
```

## Remarks

This collection of entries is returned after a response is received from the server after a call to [ListDirectory](#listdirectory-method-sshplex-class). The collection is made up of entries for each listing in the current directory, which is specified by the RemotePath property.

[MaxDirEntries](#MaxDirEntries) can be used to control the number of directory listings saved.

This collection is indexed from *0* to *size() - 1*.

This property is read-only and not available at design time.

 Please refer to the [DirEntry](#direntry-type) type for a complete list of fields.

# FileAttributes Property ([SSHPlex](#sshplex-class) Class)

The attributes of the RemoteFile .

## Syntax

```text
public SFTPFileAttributes getFileAttributes();
public void setFileAttributes(SFTPFileAttributes fileAttributes);
```

## Remarks

This property holds the attributes for the file specified by [RemoteFile](#remotefile-property-sshplex-class). Before querying this property, first call [QueryFileAttributes](#queryfileattributes-method-sshplex-class) to retrieve the attributes from the server.

To modify the attributes of the file, you may set FileAttributes and then call [UpdateFileAttributes](#updatefileattributes-method-sshplex-class).

This property is not available at design time.

 Please refer to the [SFTPFileAttributes](#sftpfileattributes-type) type for a complete list of fields.

# FilePermissions Property ([SSHPlex](#sshplex-class) Class)

The file permissions for the RemoteFile .

## Syntax

```text
public String getFilePermissions();
public void setFilePermissions(String filePermissions);
```

## Default Value

"0600"

## Remarks

This property defines the permissions that will be assigned to the [RemoteFile](#remotefile-property-sshplex-class) after an upload. The value is a four-digit octal value. This is the same format that is used with the Unix chmod command. The default value of "0600" gives read/write permissions to the file's owner.

The last three octal digits are the most significant and represent, in order, the file access capabilities of the file's owner, the owner's group, and other users. Each of these octal digits is, on its own, a 3-bit bitmask with the following possible values:

|  |  |
| --- | --- |
| 1 (001) | Execute |
| 2 (010) | Write |
| 4 (100) | Read |

An octal permission digit of 7 would have all three values set and would mean that the file can be read, written, and executed by that user class. For example, the octal permissions "100644" would have a value "6" for the owner, "4" for the group, and "4" for other users. This would be interpreted to mean that all users can read the file, no users can execute it, and only the owner can write it. The permissions "40755" would mean that all users can read and execute the file, but only the owner can write it.

The previous octal digit is another bitmask with the following values:

|  |  |
| --- | --- |
| 1 (001) | Sticky Bit - retain the file in memory for performance |
| 2 (010) | Set GID - sets the group Id of the process to the file's group Id upon execution (only for executable files) |
| 4 (100) | Set UID - sets the user Id of the process to the file's user Id upon execution (only for executable files) |

NOTE: Not all servers support setting permissions after an upload.

# Firewall Property ([SSHPlex](#sshplex-class) Class)

A set of properties related to firewall access.

## Syntax

```text
public Firewall getFirewall();
public void setFirewall(Firewall firewall);
```

## Remarks

This is a [Firewall](#firewall-type)-type property, which contains fields describing the firewall through which the class will attempt to connect.

 Please refer to the [Firewall](#firewall-type) type for a complete list of fields.

# LocalFile Property ([SSHPlex](#sshplex-class) Class)

The path to a local file for upload or download.

## Syntax

```text
public String getLocalFile();
public void setLocalFile(String localFile);
```

## Default Value

""

## Remarks

The LocalFile property is used by the [Upload](#upload-method-sshplex-class) and [Download](#download-method-sshplex-class) methods. The file will be overwritten only if the [Overwrite](#overwrite-property-sshplex-class) property is set to True.

**Example. Setting LocalFile:**

```text
SSHPlexControl.Localfile = "C:\localfile.txt"
SSHPlexControl.RemoteFile = "remotefile.txt"
string operationId = SSHPlexControl.Download()

SSHPlexControl.Localfile = "C:\localfile2.txt"
SSHPlexControl.RemoteFile = "folder/remotefile2.txt"
string operationId = SSHPlexControl.Download()
```

# LocalHost Property ([SSHPlex](#sshplex-class) Class)

The name of the local host or user-assigned IP interface through which connections are initiated or accepted.

## Syntax

```text
public String getLocalHost();
public void setLocalHost(String localHost);
```

## Default Value

""

## Remarks

This property contains the name of the local host as obtained by the *gethostname()* system call, or if the user has assigned an IP address, the value of that address.

In multihomed hosts (machines with more than one IP interface) setting LocalHost to the IP address of an interface will make the class initiate connections (or accept in the case of server classes) only through that interface. It is recommended to provide an IP address rather than a hostname when setting this property to ensure the desired interface is used.

If the class is connected, the LocalHost property shows the IP address of the interface through which the connection is made in internet dotted format (aaa.bbb.ccc.ddd). In most cases, this is the address of the local host, except for multihomed hosts (machines with more than one IP interface).

NOTE: LocalHost is not persistent. You must always set it in code, and never in the property window.

# LocalPort Property ([SSHPlex](#sshplex-class) Class)

The TCP port in the local host where the class binds.

## Syntax

```text
public int getLocalPort();
public void setLocalPort(int localPort);
```

## Default Value

0

## Remarks

This property must be set before a connection is attempted. It instructs the class to bind to a specific port (or communication endpoint) in the local machine.

Setting this property to 0 (default) enables the system to choose an open port at random. The chosen port will be returned by the LocalPort property after the connection is established.

LocalPort cannot be changed once a connection is made. Any attempt to set this property when a connection is active will generate an error.

This property is useful when trying to connect to services that require a trusted port on the client side.

# Operations Property ([SSHPlex](#sshplex-class) Class)

This collection contains all running operations.

## Syntax

```text
public SSHPlexOperationMap getOperations();
```

## Remarks

Each [SSHPlexOperation](#sshplexoperation-type) in the collection contains information about the currently running operations.

This property is read-only and not available at design time.

 Please refer to the [SSHPlexOperation](#sshplexoperation-type) type for a complete list of fields.

# Overwrite Property ([SSHPlex](#sshplex-class) Class)

The value indicating Whether or not the class should overwrite files during transfer.

## Syntax

```text
public boolean isOverwrite();
public void setOverwrite(boolean overwrite);
```

## Default Value

False

## Remarks

When [ChannelType](#channeltype-property-sshplex-class) is set to *cstSFTP*, this property is a value indicating whether or not the class should overwrite [LocalFile](#localfile-property-sshplex-class) when downloading, and [RemoteFile](#remotefile-property-sshplex-class) when uploading. If Overwrite is False, an error will be thrown whenever [LocalFile](#localfile-property-sshplex-class) exists before a download operation.

When [ChannelType](#channeltype-property-sshplex-class) is set to *cstSCP*, this property is a value indicating whether or not the class should overwrite [LocalFile](#localfile-property-sshplex-class) when downloading. If Overwrite is False, an error will be thrown whenever [LocalFile](#localfile-property-sshplex-class) exists before a download operation.

# RemoteFile Property ([SSHPlex](#sshplex-class) Class)

The name of the remote file for uploading, downloading, and so on.

## Syntax

```text
public String getRemoteFile();
public void setRemoteFile(String remoteFile);
```

## Default Value

""

## Remarks

The RemoteFile is either an absolute file path or a relative path based on RemotePath.

A number of methods use RemoteFile as an argument.

**Example 1. Setting RemoteFile:**

```text
SSHPlexControl.Localfile = "C:\localfile.txt"
SSHPlexControl.RemoteFile = "remotefile.txt"
string operationId = SSHPlexControl.Download()

SSHPlexControl.Localfile = "C:\localfile2.txt"
SSHPlexControl.RemoteFile = "folder/remotefile2.txt"
string operationId = SSHPlexControl.Download()
```

NOTE: This property will also act as a file mask when performing [ListDirectory](#listdirectory-method-sshplex-class).

**Example 2. Using RemoteFile as a File Mask:**

```text
SSHPlexControl.RemoteFile = "*.txt"
SSHPlexControl.ListDirectory()
```

The following special characters are supported for pattern matching:

|  |  |
| --- | --- |
| ? | Any single character. |
| * | Any characters or no characters (e.g., C*t matches Cat, Cot, Coast, Ct). |
| [,-] | A range of characters (e.g., [a-z], [a], [0-9], [0-9,a-d,f,r-z]). |
| \ | The slash is ignored and exact matching is performed on the next character. |

If these characters need to be used as a literal in a pattern, then they must be escaped by surrounding them with brackets []. NOTE: "]" and "-" do not need to be escaped. See below for the escape sequences:

| Character | Escape Sequence |
| --- | --- |
| ? | [?] |
| * | [*] |
| [ | [[] |
| \ | [\] |

For example, to match the value [Something].txt, specify the pattern [[]Something].txt.

# SSHAcceptServerHostKey Property ([SSHPlex](#sshplex-class) Class)

Instructs the class to accept the server host key that matches the supplied key.

## Syntax

```text
public Certificate getSSHAcceptServerHostKey();
public void setSSHAcceptServerHostKey(Certificate SSHAcceptServerHostKey);
```

## Remarks

If the host key that will be used by the server is known in advance, this property may be set to accept the expected key. Otherwise, the [SSHServerAuthentication](#sshserverauthentication-event-sshplex-class) event should be trapped, and the key should be accepted or refused in the event.

If this property is not set and the [SSHServerAuthentication](#sshserverauthentication-event-sshplex-class) event is not trapped, the server will not be authenticated and the connection will be terminated by the client.

 Please refer to the [Certificate](#certificate-type) type for a complete list of fields.

# SSHAuthMode Property ([SSHPlex](#sshplex-class) Class)

The authentication method to be used with the class when calling SSHLogon .

## Syntax

```text
public int getSSHAuthMode();
public void setSSHAuthMode(int SSHAuthMode);

Enumerated values:
  public final static int amNone = 0;
  public final static int amMultiFactor = 1;
  public final static int amPassword = 2;
  public final static int amPublicKey = 3;
  public final static int amKeyboardInteractive = 4;
  public final static int amGSSAPIWithMic = 5;
  public final static int amGSSAPIKeyex = 6;
  public final static int amCustom = 99;
```

## Default Value

2

## Remarks

The Secure Shell (SSH) Authentication specification (RFC 4252) specifies multiple methods by which a user can be authenticated by an SSH server. When a call is made to [SSHLogon](#sshlogon-method-sshplex-class), the class will connect to the SSH server and establish the security layer. After the connection has been secured, the client will send an authentication request to the [SSHHost](#sshhost-property-sshplex-class) containing the [SSHUser](#sshuser-property-sshplex-class). The server will respond containing a list of methods by which that user may be authenticated.

The class will attempt to authenticate the user by one of those methods based on the value of SSHAuthMode and other property values supplied by the user. Currently, the class supports the following authentication methods:

|  |  |
| --- | --- |
| amNone (0) | No authentication will be performed. The current [SSHUser](#sshuser-property-sshplex-class) value is ignored, and the connection will be logged as anonymous. |
| amMultiFactor (1) | This allows the class to attempt a multistep authentication process. The class will send authentication data to the server based on the list of methods allowed for the current user and the authentication property values supplied. The class will continue to send authentication data until the server acknowledges authentication success. If the server rejects an authentication step, the class throws an exception. |
| amPassword (2) | The class will use the values of [SSHUser](#sshuser-property-sshplex-class) and [SSHPassword](#sshpassword-property-sshplex-class) to authenticate the user. |
| amPublicKey (3) | The class will use the values of [SSHUser](#sshuser-property-sshplex-class) and [SSHCert](#sshcert-property-sshplex-class) to authenticate the user. [SSHCert](#sshcert-property-sshplex-class) must have a private key available for this authentication method to succeed. |
| amKeyboardInteractive (4) | At the time of authentication, the class will fire the [SSHKeyboardInteractive](#sshkeyboardinteractive-event-sshplex-class) event containing instructions on how to complete the authentication step. NOTE: amKeyboardInteractive is not supported in SSHTunnel. |
| amGSSAPIWithMic (5) | This allows the class to attempt Kerberos authentication using the GSSAPI-WITH-MIC scheme. The client will try Kerberos authentication using the value of [SSHUser](#sshuser-property-sshplex-class) (single sign-on), or if [SSHPassword](#sshpassword-property-sshplex-class) is specified as well, it will try Kerberos authentication with alternate credentials. This is currently supported only on Windows, unless using the Java edition, which also provides support for Linux and macOS. |
| amGSSAPIKeyex (6) | This allows the class to attempt Kerberos authentication using the GSSAPIKeyex scheme. The client will try Kerberos authentication using the value of [SSHUser](#sshuser-property-sshplex-class) (single sign-on), or if [SSHPassword](#sshpassword-property-sshplex-class) is specified as well, it will try Kerberos authentication with alternate credentials. This is currently supported only on Windows, unless using the Java edition, which also provides support for Linux and macOS. |
| amCustom (99) | This allows the class caller to take over the authentication process completely. When amCustom is set, the class will fire the [SSHCustomAuth](#sshcustomauth-event-sshplex-class) event as necessary to complete the authentication process. |

**Example 1. User/Password Authentication:**

```text
Control.SSHAuthMode = SftpSSHAuthModes.amPassword
Control.SSHUser = "username"
Control.SSHPassword = "password"
Control.SSHLogon("server", 22)
```

 **Example 2. Public Key Authentication:**

```text
Control.SSHAuthMode = SftpSSHAuthModes.amPublicKey
Control.SSHUser = "username"

Control.SSHCert = New Certificate(CertStoreTypes.cstPFXFile, "cert.pfx", "certpassword", "*")
Control.SSHLogon("server", 22)
```

# SSHCert Property ([SSHPlex](#sshplex-class) Class)

A certificate to be used for authenticating the SSHUser .

## Syntax

```text
public Certificate getSSHCert();
public void setSSHCert(Certificate SSHCert);
```

## Remarks

To use public key authentication, SSHCert must contain a [Certificate](#certificate-type) with a valid private key. The certificate's public key value is sent to the server along with a signature produced using the private key. The server will first check to see if the public key values match what is known for the user, and then it will attempt to use those values to verify the signature.

**Example 1. User/Password Authentication:**

```text
Control.SSHAuthMode = SftpSSHAuthModes.amPassword
Control.SSHUser = "username"
Control.SSHPassword = "password"
Control.SSHLogon("server", 22)
```

 **Example 2. Public Key Authentication:**

```text
Control.SSHAuthMode = SftpSSHAuthModes.amPublicKey
Control.SSHUser = "username"

Control.SSHCert = New Certificate(CertStoreTypes.cstPFXFile, "cert.pfx", "certpassword", "*")
Control.SSHLogon("server", 22)
```

 Please refer to the [Certificate](#certificate-type) type for a complete list of fields.

# SSHCompressionAlgorithms Property ([SSHPlex](#sshplex-class) Class)

The comma-separated list containing all allowable compression algorithms.

## Syntax

```text
public String getSSHCompressionAlgorithms();
public void setSSHCompressionAlgorithms(String SSHCompressionAlgorithms);
```

## Default Value

"none,zlib"

## Remarks

During the Secure Shell (SSH) handshake, this list will be used to negotiate the compression algorithm to be used between the client and server. This list is used for both directions: client to server and server to client. When negotiating algorithms, each side sends a list of all algorithms it supports or allows. The algorithm chosen for each direction is the first algorithm to appear in the sender's list that the receiver supports. Therefore, it is important to list multiple algorithms in preferential order. If no algorithm can be agreed on, the class will raise an error and the connection will be aborted.

At least one supported algorithm must appear in this list. The following compression algorithms are supported by the class:

- zlib
- zlib@openssh.com
- none

# SSHEncryptionAlgorithms Property ([SSHPlex](#sshplex-class) Class)

The comma-separated list containing all allowable encryption algorithms.

## Syntax

```text
public String getSSHEncryptionAlgorithms();
public void setSSHEncryptionAlgorithms(String SSHEncryptionAlgorithms);
```

## Default Value

"aes256-ctr,aes192-ctr,aes128-ctr,3des-ctr,aes256-gcm@openssh.com,aes128-gcm@openssh.com,chacha20-poly1305@openssh.com"

## Remarks

During the Secure Shell (SSH) handshake, this list will be used to negotiate the encryption algorithm to be used between the client and server. This list is used for both directions: client to server and server to client. When negotiating algorithms, each side sends a list of all algorithms it supports or allows. The algorithm chosen for each direction is the first algorithm to appear in the sender's list that the receiver supports. Therefore, it is important to list multiple algorithms in preferential order. If no algorithm can be agreed on, the class will raise an error and the connection will be aborted.

At least one supported algorithm must appear in this list. The following encryption algorithms are supported by the class:

- aes256-ctr
- aes256-cbc
- aes192-ctr
- aes192-cbc
- aes128-ctr
- aes128-cbc
- 3des-ctr
- 3des-cbc
- cast128-cbc
- blowfish-cbc
- arcfour
- arcfour128
- arcfour256
- aes256-gcm@openssh.com
- aes128-gcm@openssh.com
- chacha20-poly1305@openssh.com

# SSHHost Property ([SSHPlex](#sshplex-class) Class)

The address of the Secure Shell (SSH) host.

## Syntax

```text
public String getSSHHost();
public void setSSHHost(String SSHHost);
```

## Default Value

""

## Remarks

The SSHHost property specifies the IP address (IP number in dotted internet format) or domain name of the remote host. It is set before a connection is attempted and cannot be changed once a connection is established.

If the SSHHost property is set to a domain name, a DNS request is initiated, and upon successful termination of the request, the SSHHost property is set to the corresponding address. If the search is not successful, an error is returned.

The SSHHost must be the same host that will be assumed for SSH as for the remote service being connected to.

# SSHPassword Property ([SSHPlex](#sshplex-class) Class)

The password for Secure Shell (SSH) password-based authentication.

## Syntax

```text
public String getSSHPassword();
public void setSSHPassword(String SSHPassword);
```

## Default Value

""

## Remarks

SSHPassword specifies the password that is used to authenticate the client to the SSH server.

# SSHPort Property ([SSHPlex](#sshplex-class) Class)

The port on the Secure Shell (SSH) server where the SSH service is running; by default, 22.

## Syntax

```text
public int getSSHPort();
public void setSSHPort(int SSHPort);
```

## Default Value

22

## Remarks

The SSHPort specifies a service port on the SSH host to connect to.

A valid port number (a value between 1 and 65535) is required for the connection to take place. The property must be set before a connection is attempted and cannot be changed once a connection is established. Any attempt to change this property while connected will fail with an error.

# SSHUser Property ([SSHPlex](#sshplex-class) Class)

The username for Secure Shell (SSH) authentication.

## Syntax

```text
public String getSSHUser();
public void setSSHUser(String SSHUser);
```

## Default Value

""

## Remarks

SSHUser specifies the username that is used to authenticate the client to the SSH server. This property is required.

**Example 1. User/Password Authentication:**

```text
Control.SSHAuthMode = SftpSSHAuthModes.amPassword
Control.SSHUser = "username"
Control.SSHPassword = "password"
Control.SSHLogon("server", 22)
```

 **Example 2. Public Key Authentication:**

```text
Control.SSHAuthMode = SftpSSHAuthModes.amPublicKey
Control.SSHUser = "username"

Control.SSHCert = New Certificate(CertStoreTypes.cstPFXFile, "cert.pfx", "certpassword", "*")
Control.SSHLogon("server", 22)
```

# StartByte Property ([SSHPlex](#sshplex-class) Class)

The offset in bytes at which to begin the upload or download.

## Syntax

```text
public long getStartByte();
public void setStartByte(long startByte);
```

## Default Value

0

## Remarks

The StartByte property is used by the [Upload](#upload-method-sshplex-class) and [Download](#download-method-sshplex-class) methods to determine at what offset to begin the transfer. This allows for resuming both uploads and downloads. The value of this property is reset to *0* after a successful transfer. StartByte is not valid for use with [Append](#append-method-sshplex-class).

When downloading, this property can be used in conjunction with the [TransferredDataLimit](#TransferredDataLimit) configuration setting to download only a specific range of data from the current [RemoteFile](#remotefile-property-sshplex-class).

# Timeout Property ([SSHPlex](#sshplex-class) Class)

This property includes the timeout for the class.

## Syntax

```text
public int getTimeout();
public void setTimeout(int timeout);
```

## Default Value

60

## Remarks

If the Timeout property is set to 0, all operations will run uninterrupted until successful completion or an error condition is encountered.

If Timeout is set to a positive value, the class will wait for the operation to complete before returning control.

The class will use [DoEvents](#doevents-method-sshplex-class) to enter an efficient wait loop during any potential waiting period, making sure that all system events are processed immediately as they arrive. This ensures that the host application does not freeze and remains responsive.

If Timeout expires, and the operation is not yet complete, the class throws an exception.

NOTE: By default, all timeouts are *inactivity timeouts*, that is, the timeout period is extended by Timeout seconds when any amount of data is successfully sent or received.

The default value for the Timeout property is 60 seconds.

# Append Method ([SSHPlex](#sshplex-class) Class)

Appends the data from a local file; to a remote file using SFTP.

## Syntax

```text
public String append();
```

## Remarks

This method appends the data from [LocalFile](#localfile-property-sshplex-class) to the [RemoteFile](#remotefile-property-sshplex-class). The [StartTransfer](#starttransfer-event-sshplex-class), [Transfer](#transfer-event-sshplex-class), and [EndTransfer](#endtransfer-event-sshplex-class) events provide details about the individual file transfers. If the [LocalFile](#localfile-property-sshplex-class) property is "" (empty string), then the file data will be available through the [Transfer](#transfer-event-sshplex-class) event.

This method returns an Operation Id that identifies the operation in progress. A corresponding [SSHPlexOperation](#sshplexoperation-type) will also be added to the [Operations](#operations-property-sshplex-class) collection. The operation can be canceled by passing the Operation Id to the [CancelOperation](#canceloperation-method-sshplex-class) method.

When the operation completes, the [AppendComplete](#appendcomplete-event-sshplex-class) event will fire, and the [SSHPlexOperation](#sshplexoperation-type) associated with the completed operation will be removed from the [Operations](#operations-property-sshplex-class) collection. Inspect the parameters of the [AppendComplete](#appendcomplete-event-sshplex-class) event to determine the result.

If a Secure Shell (SSH) session is not in place, one is automatically created by the component first.

This method is applicable only when [ChannelType](#channeltype-property-sshplex-class) is set to *cstSftp*.

**Code Example**

```text
SSHPlexControl.Localfile = "C:\localfile.txt";
SSHPlexControl.RemoteFile = "remotefile.txt";
string operationId = SSHPlexControl.Append();

// Use Path in RemoteFile
SSHPlexControl.Localfile = "C:\localfile2.txt";
SSHPlexControl.RemoteFile = "folder/remotefile2.txt";
string operationId = SSHPlexControl.Append();
```

# CancelOperation Method ([SSHPlex](#sshplex-class) Class)

Cancels the operation specified by OperationId .

## Syntax

```text
public void cancelOperation(String operationId);
```

## Remarks

When this method is called, the [Error](#error-event-sshplex-class) event will fire and the associated operation's completion event will fire.

For example, if *CancelOperation* is called for an upload that is in progress, both the [Error](#error-event-sshplex-class) event and the [UploadComplete](#uploadcomplete-event-sshplex-class) event will fire.

The [SSHPlexOperation](#sshplexoperation-type) associated with the *OperationId* will be removed from the [Operations](#operations-property-sshplex-class) collection.

# ChangeRemotePath Method ([SSHPlex](#sshplex-class) Class)

This method changes the current path on the FTP server.

## Syntax

```text
public void changeRemotePath(String remotePath);
```

## Remarks

This method changes the current path on the FTP server to the specified *RemotePath*. When called, the class will issue a command to the server to change the directory. The *RemotePath* parameter may hold an absolute or relative path.

**Absolute Paths**

If the path begins with a */*, it is considered an absolute path and must specify the entire path from the root of the server. For instance:

```csharp
component.ChangeRemotePath("/home/testuser/myfolder");
```

**Relative Paths**

If the path does not begin with a */*, it is considered a relative path and is resolved in relation to the current directory. For instance, a value of *myfolder* will indicate a subfolder of the current directory. The special value *..* refers to the parent directory of the current path. For instance:

```csharp
//Change to the 'myfolder' sub-directory
component.ChangeRemotePath("myfolder");
//Navigate up two levels and then into the 'another/folder' path.
component.ChangeRemotePath("../../another/folder");
```

# CheckFileExists Method ([SSHPlex](#sshplex-class) Class)

Returns True if the file specified by RemoteFile exists on the remote server.

## Syntax

```text
public boolean checkFileExists();
```

## Remarks

This property returns *true* if the file exists on the remote server. It returns *false* if the file does not exist. You must specify the file you wish to check by setting the [RemoteFile](#remotefile-property-sshplex-class) before calling this method.

If no session is in place, the value of this property will always be *false*.

# Config Method ([SSHPlex](#sshplex-class) Class)

Sets or retrieves a configuration setting.

## Syntax

```text
public String config(String configurationString);
```

## Remarks

Config is a generic method available in every class. It is used to set and retrieve [configuration settings](#config-settings-sshplex-class) for the class.

These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the class, access to these *internal properties* is provided through the Config method.

To set a configuration setting named *PROPERTY*, you must call *Config("PROPERTY=VALUE")*, where *VALUE* is the value of the setting expressed as a string. For boolean values, use the strings "True", "False", "0", "1", "Yes", or "No" (case does not matter).

To read (query) the value of a [configuration setting](#config-settings-sshplex-class), you must call *Config("PROPERTY")*. The value will be returned as a string.

# Connect Method ([SSHPlex](#sshplex-class) Class)

Connects to the Secure Shell (SSH) host without logging in.

## Syntax

```text
public void connect();
```

## Remarks

This method establishes a connection with the [SSHHost](#sshhost-property-sshplex-class) but does not log in. In most cases, it is recommended to use the [SSHLogon](#sshlogon-method-sshplex-class) method, which will both establish a connection and log in to the server.

This method may be useful in cases in which it is desirable to separate the connection and logon operations (e.g., confirming a host is available by first creating the connection).

# CreateFile Method ([SSHPlex](#sshplex-class) Class)

Creates a file on the remote server using SFTP.

## Syntax

```text
public String createFile(String fileName);
```

## Remarks

This method creates an empty file on the server with the name specified by the *FileName* parameter. *FileName* is either an absolute path on the server or a path relative to RemotePath.

This method returns an Operation Id that identifies the operation in progress. A corresponding [SSHPlexOperation](#sshplexoperation-type) will also be added to the [Operations](#operations-property-sshplex-class) collection. The operation can be canceled by passing the Operation Id to the [CancelOperation](#canceloperation-method-sshplex-class) method.

When the operation completes, the [CreateFileComplete](#createfilecomplete-event-sshplex-class) event will fire, and the [SSHPlexOperation](#sshplexoperation-type) associated with the completed operation will be removed from the [Operations](#operations-property-sshplex-class) collection. Inspect the parameters of the [CreateFileComplete](#createfilecomplete-event-sshplex-class) event to determine the result.

To upload a file with content, use [Upload](#upload-method-sshplex-class) instead.

If a Secure Shell (SSH) session is not in place, one is automatically created by the component first.

This method is applicable only when [ChannelType](#channeltype-property-sshplex-class) is set to *cstSftp*.

# DeleteFile Method ([SSHPlex](#sshplex-class) Class)

Deletes a file on the remote server using SFTP.

## Syntax

```text
public String deleteFile(String fileName);
```

## Remarks

This method deletes a file on the server with the name specified by the *FileName* parameter. *FileName* is either an absolute path on the server or a path relative to RemotePath.

This method returns an Operation Id that identifies the operation in progress. A corresponding [SSHPlexOperation](#sshplexoperation-type) will also be added to the [Operations](#operations-property-sshplex-class) collection. The operation can be canceled by passing the Operation Id to the [CancelOperation](#canceloperation-method-sshplex-class) method.

When the operation completes, the [DeleteFileComplete](#deletefilecomplete-event-sshplex-class) event will fire, and the [SSHPlexOperation](#sshplexoperation-type) associated with the completed operation will be removed from the [Operations](#operations-property-sshplex-class) collection. Inspect the parameters of the [DeleteFileComplete](#deletefilecomplete-event-sshplex-class) event to determine the result.

If a Secure Shell (SSH) session is not in place, one is automatically created by the component first.

This method is applicable only when [ChannelType](#channeltype-property-sshplex-class) is set to *cstSftp*.

# Disconnect Method ([SSHPlex](#sshplex-class) Class)

Disconnects from the server without first logging off.

## Syntax

```text
public void disconnect();
```

## Remarks

This method immediately disconnects from the server without first logging off.

In most cases, the [SSHLogoff](#sshlogoff-method-sshplex-class) method should be used to log off and disconnect from the server. Call the Disconnect method in cases in which it is desirable to immediately disconnect without first logging off.

# DoEvents Method ([SSHPlex](#sshplex-class) Class)

This method processes events from the internal message queue.

## Syntax

```text
public void doEvents();
```

## Remarks

When DoEvents is called, the class processes any available events. If no events are available, it waits for a preset period of time, and then returns.

# Download Method ([SSHPlex](#sshplex-class) Class)

Download a RemoteFile using SFTP or SCP.

## Syntax

```text
public String download();
```

## Remarks

This method downloads the remote file specified by [RemoteFile](#remotefile-property-sshplex-class) to the local file specified by [LocalFile](#localfile-property-sshplex-class). The [StartTransfer](#starttransfer-event-sshplex-class), [Transfer](#transfer-event-sshplex-class), and [EndTransfer](#endtransfer-event-sshplex-class) events provide details about the individual file transfers. If the [LocalFile](#localfile-property-sshplex-class) property is "" (empty string) then the file data will be available through the [Transfer](#transfer-event-sshplex-class) event.

This method returns an Operation Id that identifies the operation in progress. A corresponding [SSHPlexOperation](#sshplexoperation-type) will also be added to the [Operations](#operations-property-sshplex-class) collection. The operation can be canceled by passing the Operation Id to the [CancelOperation](#canceloperation-method-sshplex-class) method.

When the operation completes the [DownloadComplete](#downloadcomplete-event-sshplex-class) event will fire, and the [SSHPlexOperation](#sshplexoperation-type) associated with the completed operation will be removed from the [Operations](#operations-property-sshplex-class) collection. Inspect the parameters of the [DownloadComplete](#downloadcomplete-event-sshplex-class) event to determine the result.

If a Secure Shell (SSH) session is not in place, one is automatically created by the component first.

This method is applicable only when [ChannelType](#channeltype-property-sshplex-class) is set to *cstSftp* or *cstScp*.

Set [RemoteFile](#remotefile-property-sshplex-class) to the name of the file to download before calling this method. If [RemoteFile](#remotefile-property-sshplex-class) specifies only a filename, it will be downloaded from the path specified by RemotePath. [RemoteFile](#remotefile-property-sshplex-class) may also be set to an absolute path.

The file will be downloaded to the stream specified (if any) by [SetDownloadStream](#setdownloadstream-method-sshplex-class). If a stream is not specified and [LocalFile](#localfile-property-sshplex-class) is set, the file will be saved to the specified location.

**Code Example**

```text
SSHPlexControl.Localfile = "C:\localfile.txt";
SSHPlexControl.RemoteFile = "remotefile.txt";
string operationId = SSHPlexControl.Download();

// Use Path in RemoteFile
SSHPlexControl.Localfile = "C:\localfile2.txt";
SSHPlexControl.RemoteFile = "folder/remotefile2.txt";
string operationId = SSHPlexControl.Download();
```

**Resuming Downloads**

The class also supports resuming failed downloads by using the [StartByte](#startbyte-property-sshplex-class) property. If a download is interrupted or canceled, set [StartByte](#startbyte-property-sshplex-class) to the appropriate offset before calling this method to resume the download.

```text
string localFile = "C:\localfile.txt";
SSHPlexControl.Localfile = localFile;
SSHPlexControl.RemoteFile = "remotefile.txt";
string operationId = SSHPlexControl.Download();

// Cancel Download using the CancelOperation method
SSHPlexControl.CancelOperation(operationId);

// Get the size of the partially downloaded temp file and set StartByte
SSHPlexControl.StartByte = new FileInfo(localFile).Length;

// Resume download
string operationId = SSHPlexControl.Download();
```

**Downloading Multiple Files Using a Filemask**

NOTE: Using a filemask for downloads is applicable only when [ChannelType](#channeltype-property-sshplex-class) is set to *cstScp*. To download files matching a filemask, set [RemoteFile](#remotefile-property-sshplex-class) to a filemask. The path may be specified as part of the value in [RemoteFile](#remotefile-property-sshplex-class) or may be set separately in RemotePath. [LocalFile](#localfile-property-sshplex-class) should be set to a local directory where files will be downloaded. When Download is called, all matching files are downloaded. See [RemoteFile](#remotefile-property-sshplex-class) for more information.

# Execute Method ([SSHPlex](#sshplex-class) Class)

Executes a specified command on the remote host.

## Syntax

```text
public String execute(String command);
```

## Remarks

This method executes the specified *Command* on the remote host.

This method returns an Operation Id that identifies the operation in progress. A corresponding [SSHPlexOperation](#sshplexoperation-type) will also be added to the [Operations](#operations-property-sshplex-class) collection. The operation can be canceled by passing the Operation Id to the [CancelOperation](#canceloperation-method-sshplex-class) method.

When the operation completes, the [ExecuteComplete](#executecomplete-event-sshplex-class) event will fire, and the [SSHPlexOperation](#sshplexoperation-type) associated with the completed operation will be removed from the [Operations](#operations-property-sshplex-class) collection. Inspect the parameters of the [ExecuteComplete](#executecomplete-event-sshplex-class) event to determine the result.

If a Secure Shell (SSH) session is not in place, one is automatically created by the component first.

This method is applicable only when [ChannelType](#channeltype-property-sshplex-class) is set to *cstSExec* or *cstSShell*.

# Interrupt Method ([SSHPlex](#sshplex-class) Class)

This method interrupts the current method.

## Syntax

```text
public void interrupt();
```

## Remarks

If there is no method in progress, Interrupt simply returns, doing nothing.

# ListDirectory Method ([SSHPlex](#sshplex-class) Class)

Lists the current directory specified by RemotePath on a server using secure file transfer protocol (SFTP).

## Syntax

```text
public String listDirectory();
```

## Remarks

This method lists the directory specified by RemotePath. [RemoteFile](#remotefile-property-sshplex-class) may also be set to a filemask to list associated files. The file listing is received through the [DirList](#dirlist-event-sshplex-class) event.

This method returns an Operation Id that identifies the operation in progress. A corresponding [SSHPlexOperation](#sshplexoperation-type) will also be added to the [Operations](#operations-property-sshplex-class) collection. The operation can be canceled by passing the Operation Id to the [CancelOperation](#canceloperation-method-sshplex-class) method.

When the operation completes, the [ListDirectoryComplete](#listdirectorycomplete-event-sshplex-class) event will fire, and the [SSHPlexOperation](#sshplexoperation-type) associated with the completed operation will be removed from the [Operations](#operations-property-sshplex-class) collection. Inspect the parameters of the [ListDirectoryComplete](#listdirectorycomplete-event-sshplex-class) event to determine the result.

If a Secure Shell (SSH) session is not in place, one is automatically created by the component first.

This method is applicable only when [ChannelType](#channeltype-property-sshplex-class) is set to *cstSftp*.

The directory entries are provided through the [DirList](#dirlist-event-sshplex-class) event and also through the [DirList](#dirlist-property-sshplex-class) property.

```text
SSHPlexControl.RemoteFile = ""; //Clear filemask
SSHPlexControl.RemotePath = "MyFolder";
string opId = SSHPlexControl.ListDirectory();
// ListDirectory operates async so we must wait for it to finish
while (SSHPlexControl.Operations.Keys.Contains(opId)) {
    SSHPlexControl.DoEvents();
}
for (int i = 0; i < SSHPlexControl.DirList.Count; i++)
{
  Console.WriteLine(SSHPlexControl.DirList[i].FileName);
  Console.WriteLine(SSHPlexControl.DirList[i].FileSize);
  Console.WriteLine(SSHPlexControl.DirList[i].FileTime);
  Console.WriteLine(SSHPlexControl.DirList[i].IsDir);
}
```

The [RemoteFile](#remotefile-property-sshplex-class) property may also be used as a filemask when listing files. For instance:

```text
SSHPlexControl.RemoteFile = "*.txt";
SSHPlexControl.ListDirectory();
```

NOTE: Because [RemoteFile](#remotefile-property-sshplex-class) is used as a filemask, ensure that you clear or reset this value before calling ListDirectory

# MakeDirectory Method ([SSHPlex](#sshplex-class) Class)

Creates a directory on the remote server using secure file transfer protocol (SFTP).

## Syntax

```text
public String makeDirectory(String newDir);
```

## Remarks

This method creates an empty directory on the server with the name specified by the *NewDir* parameter. *NewDir* is either an absolute path on the server or a path relative to RemotePath.

This method returns an Operation Id that identifies the operation in progress. A corresponding [SSHPlexOperation](#sshplexoperation-type) will also be added to the [Operations](#operations-property-sshplex-class) collection. The operation can be canceled by passing the Operation Id to the [CancelOperation](#canceloperation-method-sshplex-class) method.

When the operation completes, the [MakeDirectoryComplete](#makedirectorycomplete-event-sshplex-class) event will fire, and the [SSHPlexOperation](#sshplexoperation-type) associated with the completed operation will be removed from the [Operations](#operations-property-sshplex-class) collection. Inspect the parameters of the [MakeDirectoryComplete](#makedirectorycomplete-event-sshplex-class) event to determine the result.

If a Secure Shell (SSH) session is not in place, one is automatically created by the component first.

This method is applicable only when [ChannelType](#channeltype-property-sshplex-class) is set to *cstSftp*.

# QueryFileAttributes Method ([SSHPlex](#sshplex-class) Class)

Queries the server for the attributes of RemoteFile .

## Syntax

```text
public void queryFileAttributes();
```

## Remarks

This method queries the server for attributes of [RemoteFile](#remotefile-property-sshplex-class). After calling this method, [FileAttributes](#fileattributes-property-sshplex-class) will be populated with the values returned by the server.

To update attributes, modify the desired values in [FileAttributes](#fileattributes-property-sshplex-class) and call [UpdateFileAttributes](#updatefileattributes-method-sshplex-class).

# QueryRemotePath Method ([SSHPlex](#sshplex-class) Class)

This queries the server for the current path.

## Syntax

```text
public String queryRemotePath();
```

## Remarks

This method queries the server for the current path. When called, the class will issue a command to the server to retrieve the current path value. The return value of this method is the path returned by the server. For instance:

```csharp
string remotePath = component.QueryRemotePath();
```

# RemoveDirectory Method ([SSHPlex](#sshplex-class) Class)

Removes a directory on the remote server using secure file transfer protocol (SFTP).

## Syntax

```text
public String removeDirectory(String dirName);
```

## Remarks

This method deletes a directory on the server with the name specified by the *DirName* parameter. *DirName* is either an absolute path on the server or a path relative to RemotePath.

This method returns an Operation Id that identifies the operation in progress. A corresponding [SSHPlexOperation](#sshplexoperation-type) will also be added to the [Operations](#operations-property-sshplex-class) collection. The operation can be canceled by passing the Operation Id to the [CancelOperation](#canceloperation-method-sshplex-class) method.

When the operation completes, the [RemoveDirectoryComplete](#removedirectorycomplete-event-sshplex-class) event will fire, and the [SSHPlexOperation](#sshplexoperation-type) associated with the completed operation will be removed from the [Operations](#operations-property-sshplex-class) collection. Inspect the parameters of the [RemoveDirectoryComplete](#removedirectorycomplete-event-sshplex-class) event to determine the result.

If a Secure Shell (SSH) session is not in place, one is automatically created by the component first.

This method is applicable only when [ChannelType](#channeltype-property-sshplex-class) is set to *cstSftp*.

# RenameFile Method ([SSHPlex](#sshplex-class) Class)

Changes the name of a file on the remote server using secure file transfer protocol (SFTP).

## Syntax

```text
public String renameFile(String newName);
```

## Remarks

This method renames the file on the server specified by [RemoteFile](#remotefile-property-sshplex-class) to the name specified by the *NewName* parameter. [RemoteFile](#remotefile-property-sshplex-class) and *NewName* are either absolute paths on the server or a path relative to RemotePath.

This method returns an Operation Id that identifies the operation in progress. A corresponding [SSHPlexOperation](#sshplexoperation-type) will also be added to the [Operations](#operations-property-sshplex-class) collection. The operation can be canceled by passing the Operation Id to the [CancelOperation](#canceloperation-method-sshplex-class) method.

When the operation completes, the [RenameFileComplete](#renamefilecomplete-event-sshplex-class) event will fire, and the [SSHPlexOperation](#sshplexoperation-type) associated with the completed operation will be removed from the [Operations](#operations-property-sshplex-class) collection. Inspect the parameters of the [RenameFileComplete](#renamefilecomplete-event-sshplex-class) event to determine the result.

If a Secure Shell (SSH) session is not in place, one is automatically created by the component first.

This method is applicable only when [ChannelType](#channeltype-property-sshplex-class) is set to *cstSftp*.

# SendCommand Method ([SSHPlex](#sshplex-class) Class)

Sends the specified command to the remote host.

## Syntax

```text
public void sendCommand(String command);
```

## Remarks

This method sends the *Command* to the [SSHHost](#sshhost-property-sshplex-class). The command is executed in the user's shell.

It is not necessary to append an end-of-line character to the command. All output from the remote execution will be returned through the [Stdout](#stdout-event-sshplex-class) event.

This method sends the *Command* to the [SSHHost](#sshhost-property-sshplex-class). The command is executed in the user's shell.

You do not need to append an end-of-line character to the command. All output from the remote execution will be returned through the [Stdout](#stdout-event-sshplex-class) event.

# SendStdinBytes Method ([SSHPlex](#sshplex-class) Class)

Sends binary data to the remote host.

## Syntax

```text
public void sendStdinBytes(byte[] data);
```

## Remarks

This method sends the specified binary data to the remote host. The data provided are used as input for the process on the remote host. To send text, use the [SendStdinText](#sendstdintext-method-sshplex-class) method instead.

If you are sending data to the remote host faster than it can process it, or faster than the network bandwidth allows, the outgoing queue might fill up. When this happens the class fails with exception 10035: "[10035] Operation would block" (WSAEWOULDBLOCK). You can check this error, and then try to send the data again. .

This method sends the specified binary data to the remote host. The data provided are used as input for the process on the remote host. To send text, use the [SendStdinText](#sendstdintext-method-sshplex-class) method instead.

If you are sending data to the remote host faster than it can process it, or faster than the network bandwidth allows, the outgoing queue might fill up. When this happens, the class fails with exception 10035: "[10035] Operation would block" (WSAEWOULDBLOCK). You can check this error, and then try to send the data again. .

# SendStdinText Method ([SSHPlex](#sshplex-class) Class)

Sends text to the remote host.

## Syntax

```text
public void sendStdinText(String text);
```

## Remarks

This method sends the specified text to the remote host. The text provided is used as an input for the process on the remote host. To send binary data, use the [SendStdinBytes](#sendstdinbytes-method-sshplex-class) method instead.

If you are sending data to the remote host faster than it can process it, or faster than the network bandwidth allows, the outgoing queue might fill up. When this happens the class fails with exception 10035: "[10035] Operation would block" (WSAEWOULDBLOCK). You can check this error, and then try to send the data again. .

This method sends the specified text to the remote host. The text provided is used as an input for the process on the remote host. To send binary data, use the [SendStdinBytes](#sendstdinbytes-method-sshplex-class) method instead.

If you are sending data to the remote host faster than it can process it, or faster than the network bandwidth allows, the outgoing queue might fill up. When this happens, the class fails with exception 10035: "[10035] Operation would block" (WSAEWOULDBLOCK). You can check this error, and then try to send the data again. .

# SetDownloadStream Method ([SSHPlex](#sshplex-class) Class)

Sets the stream to which the downloaded data from the server will be written.

## Syntax

```text
public void setDownloadStream(java.io.OutputStream downloadStream);
```

## Remarks

If a download stream is set before the [Download](#download-method-sshplex-class) method is called, the downloaded data will be written to the stream. The stream should be open and normally set to position *0*.

The class will automatically close this stream if [CloseStreamAfterTransfer](#CloseStreamAfterTransfer) is True (default). If the stream is closed, you will need to call SetDownloadStream again before calling [Download](#download-method-sshplex-class) again.

The downloaded content will be written starting at the current position in the stream.

NOTE: SetDownloadStream and [LocalFile](#localfile-property-sshplex-class) will reset the other.

# SetUploadStream Method ([SSHPlex](#sshplex-class) Class)

Sets the stream from which the class will read data to upload to the server.

## Syntax

```text
public void setUploadStream(java.io.InputStream uploadStream);
```

## Remarks

If an upload stream is set before the [Upload](#upload-method-sshplex-class) method is called, the content of the stream will be read by the class and uploaded to the server. The stream should be open and normally set to position *0*. The class will automatically close this stream if [CloseStreamAfterTransfer](#CloseStreamAfterTransfer) is True (default). If the stream is closed, you will need to call SetUploadStream again before calling [Upload](#upload-method-sshplex-class) again. The content of the stream will be read from the current position all the way to the end and no bytes will be skipped.

NOTE: SetUploadStream and [LocalFile](#localfile-property-sshplex-class) will reset the other.

# SSHLogoff Method ([SSHPlex](#sshplex-class) Class)

Logs off from the Secure Shell (SSH) server.

## Syntax

```text
public void SSHLogoff();
```

## Remarks

Logs off from the SSH server. If that fails, the connection is terminated by the local host.

# SSHLogon Method ([SSHPlex](#sshplex-class) Class)

Logs on to the SSHHost using the current SSHUser and SSHPassword .

## Syntax

```text
public void SSHLogon(String SSHHost, int SSHPort);
```

## Remarks

Logs on to the Secure Shell (SSH) server using the current [SSHUser](#sshuser-property-sshplex-class) and [SSHPassword](#sshpassword-property-sshplex-class). This will perform the SSH handshake and authentication.

**Example. Logging On:**

```text
SSHPlexControl.SSHUser = "username"
SSHPlexControl.SSHPassword = "password"
SSHPlexControl.SSHLogon("sshHost", sshPort)
```

# UpdateFileAttributes Method ([SSHPlex](#sshplex-class) Class)

Instructs the class to send the FileAttributes to the server using secure file transfer protocol (SFTP).

## Syntax

```text
public String updateFileAttributes();
```

## Remarks

When UpdateFileAttributes is called, the class will send the value of [FileAttributes](#fileattributes-property-sshplex-class) to the server.

This method returns an Operation Id that identifies the operation in progress. A corresponding [SSHPlexOperation](#sshplexoperation-type) will also be added to the [Operations](#operations-property-sshplex-class) collection. The operation can be canceled by passing the Operation Id to the [CancelOperation](#canceloperation-method-sshplex-class) method.

When the operation completes, the [UpdateFileAttributesComplete](#updatefileattributescomplete-event-sshplex-class) event will fire, and the [SSHPlexOperation](#sshplexoperation-type) associated with the completed operation will be removed from the [Operations](#operations-property-sshplex-class) collection. Inspect the parameters of the [UpdateFileAttributesComplete](#updatefileattributescomplete-event-sshplex-class) event to determine the result.

If a Secure Shell (SSH) session is not in place, one is automatically created by the component first.

This method is applicable only when [ChannelType](#channeltype-property-sshplex-class) is set to *cstSftp*.

# Upload Method ([SSHPlex](#sshplex-class) Class)

Uploads a file specified by LocalFile using secure copy protocol (SCP) or secure file transfer protocol (SFTP).

## Syntax

```text
public String upload();
```

## Remarks

This method uploads the local file specified by [LocalFile](#localfile-property-sshplex-class) to the remote file specified by [RemoteFile](#remotefile-property-sshplex-class). The [StartTransfer](#starttransfer-event-sshplex-class), [Transfer](#transfer-event-sshplex-class), and [EndTransfer](#endtransfer-event-sshplex-class) events provide details about the individual file transfers. If the [LocalFile](#localfile-property-sshplex-class) property is "" (empty string), then the file data will be available through the [Transfer](#transfer-event-sshplex-class) event.

This method returns an Operation Id that identifies the operation in progress. A corresponding [SSHPlexOperation](#sshplexoperation-type) will also be added to the [Operations](#operations-property-sshplex-class) collection. The operation can be canceled by passing the Operation Id to the [CancelOperation](#canceloperation-method-sshplex-class) method.

When the operation completes, the [UploadComplete](#uploadcomplete-event-sshplex-class) event will fire, and the [SSHPlexOperation](#sshplexoperation-type) associated with the completed operation will be removed from the [Operations](#operations-property-sshplex-class) collection. Inspect the parameters of the [UploadComplete](#uploadcomplete-event-sshplex-class) event to determine the result.

If a Secure Shell (SSH) session is not in place, one is automatically created by the component first.

This method is applicable only when [ChannelType](#channeltype-property-sshplex-class) is set to *cstSftp* or *cstScp*.

Set [LocalFile](#localfile-property-sshplex-class) to the name of the file to upload before calling this method. If [SetUploadStream](#setuploadstream-method-sshplex-class) is used to set an upload stream, the data to upload is taken from the stream instead.

[RemoteFile](#remotefile-property-sshplex-class) should be set to either a relative or absolute path. If [RemoteFile](#remotefile-property-sshplex-class) is not an absolute path, it will be uploaded relative to RemotePath.

**Code Example**

```text
SSHPlexControl.Localfile = "C:\localfile.txt";
SSHPlexControl.RemoteFile = "remotefile.txt";
string operationId = SSHPlexControl.Upload();

// Use Path in RemoteFile
SSHPlexControl.Localfile = "C:\localfile2.txt";
SSHPlexControl.RemoteFile = "folder/remotefile2.txt";
string operationId = SSHPlexControl.Upload();
```

**Resuming Uploads**

The class also supports resuming failed uploads by using the [StartByte](#startbyte-property-sshplex-class) property. If an upload is interrupted or canceled, set [StartByte](#startbyte-property-sshplex-class) to the appropriate offset before calling this method to resume the upload.

```text
string localFile = "C:\localfile.txt";
SSHPlexControl.Localfile = localFile;
SSHPlexControl.RemoteFile = "remotefile.txt";
string operationId = SSHPlexControl.Upload();

// Cancel Upload using the CancelOperation method
SSHPlexControl.CancelOperation(operationId);

// Get the size of the partially uploaded temp file and set StartByte
SSHPlexControl.StartByte = SSHPlexControl.FileAttributes.Size;

// Resume upload
string operationId = SSHPlexControl.Upload();
```

# AppendComplete Event ([SSHPlex](#sshplex-class) Class)

Fired when an append operation completes.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void appendComplete(SSHPlexAppendCompleteEvent e) {}
  ...
}

public class SSHPlexAppendCompleteEvent {
  public String operationId;
  public int errorCode;
  public String errorDescription;
  public String localFile;
  public String remoteFile;
  public String remotePath;
}
```

## Remarks

This event fires when an append operation completes either successfully or unsuccessfully. If the operation succeeded, *ErrorCode* will be *0*. If the operation failed or was canceled by [CancelOperation](#canceloperation-method-sshplex-class), *ErrorCode* will contain a nonzero value and *ErrorDescription* will contain a description of the error. Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for possible error codes.

*OperationId* is the Id of the completed operation. This value will match the Operation Id returned by the method that initiated the operation.

*ErrorCode* holds the error code (if any). A value of 0 indicates success. A positive value indicates failure.

*ErrorDescription* is a description of the error.

*LocalFile* is the local file that was specified when the operation was initiated.

*RemoteFile* is the remote file that was specified when the operation was initiated.

*RemotePath* is the remote path that was specified when the operation was initiated.

# Connected Event ([SSHPlex](#sshplex-class) Class)

Fired immediately after a connection completes (or fails).

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void connected(SSHPlexConnectedEvent e) {}
  ...
}

public class SSHPlexConnectedEvent {
  public int statusCode;
  public String description;
}
```

## Remarks

If the connection is made normally, *StatusCode* is 0 and *Description* is "OK".

If the connection fails, *StatusCode* has the error code returned by the Transmission Control Protocol (TCP)/IP stack. *Description* contains a description of this code. The value of *StatusCode* is equal to the value of the error.

Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for more information.

# ConnectionStatus Event ([SSHPlex](#sshplex-class) Class)

Fired to indicate changes in the connection state.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void connectionStatus(SSHPlexConnectionStatusEvent e) {}
  ...
}

public class SSHPlexConnectionStatusEvent {
  public String connectionEvent;
  public int statusCode;
  public String description;
}
```

## Remarks

This event is fired when the connection state changes: for example, completion of a firewall or proxy connection or completion of a security handshake.

The *ConnectionEvent* parameter indicates the type of connection event. Values may include the following:

|  |  |
| --- | --- |
|  | Firewall connection complete. |
|  | Secure Sockets Layer (SSL) or S/Shell handshake complete (where applicable). |
|  | Remote host connection complete. |
|  | Remote host disconnected. |
|  | SSL or S/Shell connection broken. |
|  | Firewall host disconnected. |

 *StatusCode* has the error code returned by the Transmission Control Protocol (TCP)/IP stack. *Description* contains a description of this code. The value of *StatusCode* is equal to the value of the error.

# CreateFileComplete Event ([SSHPlex](#sshplex-class) Class)

Fired when a CreateFile operation completes (or fails).

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void createFileComplete(SSHPlexCreateFileCompleteEvent e) {}
  ...
}

public class SSHPlexCreateFileCompleteEvent {
  public String operationId;
  public int errorCode;
  public String errorDescription;
  public String remoteFile;
  public String remotePath;
}
```

## Remarks

This event fires when a CreateFile operation completes either successfully or unsuccessfully. If the operation succeeded, *ErrorCode* will be *0*. If the operation failed or was canceled by [CancelOperation](#canceloperation-method-sshplex-class), *ErrorCode* will contain a nonzero value and *ErrorDescription* will contain a description of the error. Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for possible error codes.

*OperationId* is the Id of the completed operation. This value will match the Operation Id returned by the method that initiated the operation.

*ErrorCode* holds the error code (if any). A value of 0 indicates success. A positive value indicates failure.

*ErrorDescription* is a description of the error.

*RemoteFile* is the remote file that was specified when the operation was initiated.

*RemotePath* is the remote path that was specified when the operation was initiated.

# DeleteFileComplete Event ([SSHPlex](#sshplex-class) Class)

Fired when a DeleteFile operation completes (or fails).

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void deleteFileComplete(SSHPlexDeleteFileCompleteEvent e) {}
  ...
}

public class SSHPlexDeleteFileCompleteEvent {
  public String operationId;
  public int errorCode;
  public String errorDescription;
  public String remoteFile;
  public String remotePath;
}
```

## Remarks

This event fires when a DeleteFile operation completes either successfully or unsuccessfully. If the operation succeeded, *ErrorCode* will be *0*. If the operation failed or was canceled by [CancelOperation](#canceloperation-method-sshplex-class), *ErrorCode* will contain a nonzero value and *ErrorDescription* will contain a description of the error. Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for possible error codes.

*OperationId* is the Id of the completed operation. This value will match the Operation Id returned by the method that initiated the operation.

*ErrorCode* holds the error code (if any). A value of 0 indicates success. A positive value indicates failure.

*ErrorDescription* is a description of the error.

*RemoteFile* is the remote file that was specified when the operation was initiated.

*RemotePath* is the remote path that was specified when the operation was initiated.

# DirList Event ([SSHPlex](#sshplex-class) Class)

Fired when a directory entry is received.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void dirList(SSHPlexDirListEvent e) {}
  ...
}

public class SSHPlexDirListEvent {
  public String operationId;
  public String dirEntry;
  public String fileName;
  public boolean isDir;
  public long fileSize;
  public String fileTime;
  public boolean isSymlink;
}
```

## Remarks

*OperationId* is associated with the operation that fired this event.

The DirList events are fired when a directory listing is received as a response to a [ListDirectory](#listdirectory-method-sshplex-class).

The [StartTransfer](#starttransfer-event-sshplex-class) and [EndTransfer](#endtransfer-event-sshplex-class) events mark the beginning and end of the event stream.

The *DirEntry* parameter contains the filename when [ListDirectory](#listdirectory-method-sshplex-class) is called.

The class tries to fill out the *FileName*, *IsDir*, *FileSize*, and *FileTime* parameters when calling the ListDirectory method.

The format of the *FileTime* parameter returned by the class can be controlled through the [FileTimeFormat](#FileTimeFormat) configuration setting. If no format is specified, the class will format the date dependent on the year. If the filetime is in the same year, it will be formatted as "MMM dd HH:mm", otherwise it will be formatted as "MMM dd yyyy".

*IsSymlink* indicates whether the entry is a symbolic link. When the entry is a symbolic link, the value of *IsDir* will always be False because this information is not returned in the directory listing. To inspect a symlink to determine if it is a link to a file or folder, set [RemoteFile](#remotefile-property-sshplex-class) and query the [IsDir](#SFTPFileAttributes_f_IsDir) field.

# Disconnected Event ([SSHPlex](#sshplex-class) Class)

Fired when a connection is closed.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void disconnected(SSHPlexDisconnectedEvent e) {}
  ...
}

public class SSHPlexDisconnectedEvent {
  public int statusCode;
  public String description;
}
```

## Remarks

If the connection is broken normally, *StatusCode* is 0 and *Description* is "OK".

If the connection is broken for any other reason, *StatusCode* has the error code returned by the Transmission Control Protocol (TCP/IP) subsystem. *Description* contains a description of this code. The value of *StatusCode* is equal to the value of the TCP/IP error.

Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for more information.

# DownloadComplete Event ([SSHPlex](#sshplex-class) Class)

Fired when a download operation completes (or fails).

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void downloadComplete(SSHPlexDownloadCompleteEvent e) {}
  ...
}

public class SSHPlexDownloadCompleteEvent {
  public String operationId;
  public int errorCode;
  public String errorDescription;
  public String localFile;
  public String remoteFile;
  public String remotePath;
}
```

## Remarks

This event fires when a download operation completes either successfully or unsuccessfully. If the operation succeeded, *ErrorCode* will be *0*. If the operation failed or was canceled by [CancelOperation](#canceloperation-method-sshplex-class), *ErrorCode* will contain a nonzero value and *ErrorDescription* will contain a description of the error. Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for possible error codes.

*OperationId* is the Id of the completed operation. This value will match the Operation Id returned by the method that initiated the operation.

*ErrorCode* holds the error code (if any). A value of 0 indicates success. A positive value indicates failure.

*ErrorDescription* is a description of the error.

*LocalFile* is the local file that was specified when the operation was initiated.

*RemoteFile* is the remote file that was specified when the operation was initiated.

*RemotePath* is the remote path that was specified when the operation was initiated.

# EndTransfer Event ([SSHPlex](#sshplex-class) Class)

Fired when a file completes downloading or uploading.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void endTransfer(SSHPlexEndTransferEvent e) {}
  ...
}

public class SSHPlexEndTransferEvent {
  public String operationId;
  public int direction;
  public String localFile;
  public String remoteFile;
  public String remotePath;
}
```

## Remarks

This event is fired once per file when it finishes downloading or uploading.

*OperationId* is the string associated with operation fired this event.

*Direction* is 0 for uploads and 1 for downloads.

*LocalFile*, *RemoteFile*, and *RemotePath* are populated with values of [LocalFile](#localfile-property-sshplex-class), [RemoteFile](#remotefile-property-sshplex-class), and RemotePath, respectively, that are associated with the method that triggered this event.

# Error Event ([SSHPlex](#sshplex-class) Class)

Fired when errors occur during data delivery.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void error(SSHPlexErrorEvent e) {}
  ...
}

public class SSHPlexErrorEvent {
  public String operationId;
  public int errorCode;
  public String description;
  public String localFile;
  public String remoteFile;
}
```

## Remarks

The Error event is fired in case of exceptional conditions during message processing. Normally the class throws an exception.

*ErrorCode* contains an error code and *Description* contains a textual description of the error. For a list of valid error codes and their descriptions, please refer to the [Error Codes](#trappable-errors-sshplex-class) section.

*LocalFile* identifies the local file. *RemoteFile* is the remote file.

# ExecuteComplete Event ([SSHPlex](#sshplex-class) Class)

Fired when an execute operation completes (or fails).

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void executeComplete(SSHPlexExecuteCompleteEvent e) {}
  ...
}

public class SSHPlexExecuteCompleteEvent {
  public String operationId;
  public int errorCode;
  public String errorDescription;
  public int exitStatus;
}
```

## Remarks

This event fires when an execute operation completes either successfully or unsuccessfully. If the operation succeeded, *ErrorCode* will be *0*. If the operation failed or was canceled by [CancelOperation](#canceloperation-method-sshplex-class), *ErrorCode* will contain a nonzero value and *ErrorDescription* will contain a description of the error. Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for possible error codes.

*OperationId* is the Id of the completed operation. This value will match the Operation Id returned by the method that initiated the operation.

*ErrorCode* holds the error code (if any). A value of 0 indicates success. A positive value indicates failure.

*ErrorDescription* is a description of the error.

*ExitStatus* is the exit code of the executed command. If an error message is returned, it is present in *ErrorDescription*.

# ListDirectoryComplete Event ([SSHPlex](#sshplex-class) Class)

Fired when a ListDirectory operation completes (or fails).

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void listDirectoryComplete(SSHPlexListDirectoryCompleteEvent e) {}
  ...
}

public class SSHPlexListDirectoryCompleteEvent {
  public String operationId;
  public int errorCode;
  public String errorDescription;
  public String remotePath;
}
```

## Remarks

This event fires when a ListDirectory operation completes either successfully or unsuccessfully. If the operation succeeded, *ErrorCode* will be *0*. If the operation failed or was canceled by [CancelOperation](#canceloperation-method-sshplex-class), *ErrorCode* will contain a nonzero value and *ErrorDescription* will contain a description of the error. Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for possible error codes.

*OperationId* is the Id of the completed operation. This value will match the Operation Id returned by the method that initiated the operation.

*ErrorCode* holds the error code (if any). A value of 0 indicates success. A positive value indicates failure.

*ErrorDescription* is a description of the error.

*RemotePath* is the remote path that was specified when the operation was initiated.

# Log Event ([SSHPlex](#sshplex-class) Class)

Fired once for each log message.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void log(SSHPlexLogEvent e) {}
  ...
}

public class SSHPlexLogEvent {
  public int logLevel;
  public String message;
  public String logType;
}
```

## Remarks

Fired once for each log message generated by the class. The verbosity is controlled by the [LogLevel](#LogLevel) setting.

*LogLevel* indicates the detail level of the message. Possible values are as follows:

|  |  |
| --- | --- |
| 0 (None) | No messages are logged. |
| 1 (Info - Default) | Informational events such as Secure Shell (SSH) handshake messages are logged. |
| 2 (Verbose) | Detailed data such as individual packet information are logged. |
| 3 (Debug) | Debug data including all relevant sent and received bytes are logged. |

*Message* is the log message.

*LogType* is reserved for future use.

# MakeDirectoryComplete Event ([SSHPlex](#sshplex-class) Class)

Fired when a MakeDirectory operation completes (or fails).

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void makeDirectoryComplete(SSHPlexMakeDirectoryCompleteEvent e) {}
  ...
}

public class SSHPlexMakeDirectoryCompleteEvent {
  public String operationId;
  public int errorCode;
  public String errorDescription;
  public String remotePath;
}
```

## Remarks

This event fires when a MakeDirectory operation completes either successfully or unsuccessfully. If the operation succeeded, *ErrorCode* will be *0*. If the operation failed or was canceled by [CancelOperation](#canceloperation-method-sshplex-class), *ErrorCode* will contain a nonzero value and *ErrorDescription* will contain a description of the error. Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for possible error codes.

*OperationId* is the Id of the completed operation. This value will match the Operation Id returned by the method that initiated the operation.

*ErrorCode* holds the error code (if any). A value of 0 indicates success. A positive value indicates failure.

*ErrorDescription* is a description of the error.

*RemotePath* is the remote path that was specified when the operation was initiated.

# RemoveDirectoryComplete Event ([SSHPlex](#sshplex-class) Class)

Fired when a RemoveDirectory operation completes (or fails).

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void removeDirectoryComplete(SSHPlexRemoveDirectoryCompleteEvent e) {}
  ...
}

public class SSHPlexRemoveDirectoryCompleteEvent {
  public String operationId;
  public int errorCode;
  public String errorDescription;
  public String directoryName;
  public String remotePath;
}
```

## Remarks

This event fires when a RemoveDirectory operation completes either successfully or unsuccessfully. If the operation succeeded, *ErrorCode* will be *0*. If the operation failed or was canceled by [CancelOperation](#canceloperation-method-sshplex-class), *ErrorCode* will contain a nonzero value and *ErrorDescription* will contain a description of the error. Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for possible error codes.

*OperationId* is the Id of the completed operation. This value will match the Operation Id returned by the method that initiated the operation.

*ErrorCode* holds the error code (if any). A value of 0 indicates success. A positive value indicates failure.

*ErrorDescription* is a description of the error.

*DirectoryName* is the name of the directory that was removed.

*RemotePath* is the remote path that was specified when the operation was initiated.

# RenameFileComplete Event ([SSHPlex](#sshplex-class) Class)

Fired when a RenameFile operation completes (or fails).

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void renameFileComplete(SSHPlexRenameFileCompleteEvent e) {}
  ...
}

public class SSHPlexRenameFileCompleteEvent {
  public String operationId;
  public int errorCode;
  public String errorDescription;
  public String remoteFile;
  public String remotePath;
  public String newFileName;
}
```

## Remarks

This event fires when a RenameFile operation completes either successfully or unsuccessfully. If the operation succeeded, *ErrorCode* will be *0*. If the operation failed or was canceled by [CancelOperation](#canceloperation-method-sshplex-class), *ErrorCode* will contain a nonzero value and *ErrorDescription* will contain a description of the error. Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for possible error codes.

*OperationId* is the Id of the completed operation. This value will match the Operation Id returned by the method that initiated the operation.

*ErrorCode* holds the error code (if any). A value of 0 indicates success. A positive value indicates failure.

*ErrorDescription* is a description of the error.

*RemoteFile* is the remote file that was specified when the operation was initiated.

*RemotePath* is the remote path that was specified when the operation was initiated.

*NewFileName* is the name to which the file was renamed as provided when [RenameFile](#renamefile-method-sshplex-class) was originally called.

# SSHCustomAuth Event ([SSHPlex](#sshplex-class) Class)

Fired when the class is doing a custom authentication.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void SSHCustomAuth(SSHPlexSSHCustomAuthEvent e) {}
  ...
}

public class SSHPlexSSHCustomAuthEvent {
  public String packet; //read-write
}
```

## Remarks

SSHCustomAuth is fired during the user authentication stage of the Secure Shell (SSH) logon process if [SSHAuthMode](#sshauthmode-property-sshplex-class) is set to amCustom. *Packet* contains the last raw SSH packet sent by the server, in HEX-encoded format.

The client should create a new raw SSH packet to send to the server and set *Packet* to the HEX-encoded representation of the packet to send.

In all cases, *Packet* will start with the message type field.

To read the incoming packet, call DecodePacket and then use the GetSSHParam and GetSSHParamBytes methods. To create a packet, use the SetSSHParam method and then call EncodePacket to obtain a HEX-encoded value and assign this to the *Packet* parameter.

# SSHKeyboardInteractive Event ([SSHPlex](#sshplex-class) Class)

Fired when the class receives a request for user input from the server.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void SSHKeyboardInteractive(SSHPlexSSHKeyboardInteractiveEvent e) {}
  ...
}

public class SSHPlexSSHKeyboardInteractiveEvent {
  public String name;
  public String instructions;
  public String prompt;
  public String response; //read-write
  public boolean echoResponse;
}
```

## Remarks

SSHKeyboardInteractive is fired during the user authentication stage of the Secure Shell (SSH) logon process. During authentication, the class will request a list of available authentication methods for the [SSHUser](#sshuser-property-sshplex-class). For example, if the [SSHHost](#sshhost-property-sshplex-class) responds with "keyboard-interactive", the class will fire this event to allow the client application to set the password.

During authentication, the SSH server may respond with a request for the user's authentication information. *Name* is a server-provided value associated with the authentication method such as "CRYPTOCard Authentication". *Instructions* will contain specific instructions, also supplied by the server, for how the user should respond.

Along with these values, the server will also send at least one input *Prompt* to be displayed to and filled out by the user. *Response* should be set to the user's input, and will be sent back in the user authentication information response. *EchoResponse* is a server recommendation for whether or not the user's response should be echoed back during input.

NOTE: The server may send several prompts in a single packet. The class will fire the SSHKeyboardInteractive event once for each prompt.

# SSHServerAuthentication Event ([SSHPlex](#sshplex-class) Class)

Fired after the server presents its public key to the client.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void SSHServerAuthentication(SSHPlexSSHServerAuthenticationEvent e) {}
  ...
}

public class SSHPlexSSHServerAuthenticationEvent {
  public byte[] hostKey;
  public String fingerprint;
  public String keyAlgorithm;
  public String certSubject;
  public String certIssuer;
  public String status;
  public boolean accept; //read-write
}
```

## Remarks

This event is fired when the client can decide whether or not to continue with the connection process. If the public key is known to be a valid key for the Secure Shell (SSH) server, *Accept* should be set to True within the event. Otherwise, the server will not be authenticated and the connection will be broken.

*Accept* will be True only if either *HostKey* or *Fingerprint* is identical to the value of [SSHAcceptServerHostKey](#sshacceptserverhostkey-property-sshplex-class).

Accept may be set to True manually to accept the server host key.

NOTE: SSH's security inherently relies on client verification of the host key. Ignoring the host key and always setting *Accept* to True is strongly discouraged, and could cause potentially serious security vulnerabilities in your application. It is recommended that clients maintain a list of known keys for each server and check *HostKey* against this list each time a connection is attempted.

**Host Key** contains the full binary text of the key, in the same format used internally by SSH.

*Fingerprint* holds the SHA-256 hash of *HostKey* in the hex-encoded form: *0a:1b:2c:3d*. To configure the hash algorithm used to calculate this value, see [SSHFingerprintHashAlgorithm](#SSHFingerprintHashAlgorithm). To configure the encoding format used when displaying this value, see [SSHFingerprintEncoding](#SSHFingerprintEncoding).

*KeyAlgorithm* identifies the host key algorithm. The following values are supported:

- ssh-rsa
- ssh-dss
- rsa-sha2-256
- rsa-sha2-512
- x509v3-sign-rsa
- x509v3-sign-dss
- ecdsa-sha2-nistp256
- ecdsa-sha2-nistp384
- ecdsa-sha2-nistp521

 To limit the accepted host key algorithms, refer to [SSHPublicKeyAlgorithms](#SSHPublicKeyAlgorithms).

*CertSubject* is the subject of the certificate. This is applicable only when *KeyAlgorithm* is "x509v3-sign-rsa" or "x509v3-sign-dss".

*CertIssuer* is the issuer of the certificate. This is applicable only when *KeyAlgorithm* is "x509v3-sign-rsa" or "x509v3-sign-dss".

*Status* is reserved for future use.

# SSHStatus Event ([SSHPlex](#sshplex-class) Class)

Fired to track the progress of the secure connection.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void SSHStatus(SSHPlexSSHStatusEvent e) {}
  ...
}

public class SSHPlexSSHStatusEvent {
  public String message;
}
```

## Remarks

The event is fired for informational and logging purposes only. Used to track the progress of the connection.

# StartTransfer Event ([SSHPlex](#sshplex-class) Class)

Fired when a file starts downloading or uploading.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void startTransfer(SSHPlexStartTransferEvent e) {}
  ...
}

public class SSHPlexStartTransferEvent {
  public String operationId;
  public int direction;
  public String localFile;
  public String remoteFile;
  public String remotePath;
  public String filePermissions; //read-write
}
```

## Remarks

This event is fired once per file when it starts downloading or uploading.

*OperationId* is the string associated with the operation fired this event.

*Direction* is 0 for uploads and 1 for downloads.

*LocalFile*, *RemoteFile*, and *RemotePath* are populated with values of [LocalFile](#localfile-property-sshplex-class), [RemoteFile](#remotefile-property-sshplex-class), and RemotePath, respectively, that are associated with the method that triggered this event.

*FilePermissions* includes information about the file that can be modified before finishing the upload or download.

# Stderr Event ([SSHPlex](#sshplex-class) Class)

Fired when data (complete lines) come in through Stderr.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void stderr(SSHPlexStderrEvent e) {}
  ...
}

public class SSHPlexStderrEvent {
  public String operationId;
  public byte[] text;
}
```

## Remarks

The Stderr event is fired every time the process on the remote host outputs a line in its error output. The incoming data are provided through the *Text* parameter.

# Stdout Event ([SSHPlex](#sshplex-class) Class)

Fired when data (complete lines) come in through Stdout.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void stdout(SSHPlexStdoutEvent e) {}
  ...
}

public class SSHPlexStdoutEvent {
  public String operationId;
  public byte[] text;
}
```

## Remarks

The Stdout event is fired every time the process on the remote host outputs a line in its standard output. The incoming data are provided through the *Text* parameter.

# Transfer Event ([SSHPlex](#sshplex-class) Class)

Fired during file download or upload.

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void transfer(SSHPlexTransferEvent e) {}
  ...
}

public class SSHPlexTransferEvent {
  public String operationId;
  public int direction;
  public String localFile;
  public String remoteFile;
  public String remotePath;
  public long bytesTransferred;
  public int percentDone;
  public byte[] text;
  public boolean cancel; //read-write
}
```

## Remarks

This event is fired once per file when it starts downloading or uploading.

*OperationId* is associated with the operation that fired this event. *Direction* is 0 for uploads and 1 for downloads. *LocalFile*, *RemoteFile*, and *RemotePath* are populated with values of [LocalFile](#localfile-property-sshplex-class), [RemoteFile](#remotefile-property-sshplex-class), and RemotePath, respectively, that are associated with the operation that fired this event.

*BytesTransferred* shows the number of bytes transferred since the beginning of the transfer, and *PercentDone* contains the percentage (0-100) of bytes transferred based on the *Direction* being transferred. If *PercentDone* cannot be calculated the value will be -1.

*Text* contains the text of the file being transferred.

Setting *Cancel* to True will cancel the associated operation without firing a [DownloadComplete](#downloadcomplete-event-sshplex-class) or [UploadComplete](#uploadcomplete-event-sshplex-class) event. It is not equivalent to calling [CancelOperation](#canceloperation-method-sshplex-class) with the associated *OperationId*, which will fire the aforementioned events.

# UpdateFileAttributesComplete Event ([SSHPlex](#sshplex-class) Class)

Fired when a UpdateFileAttributes operation completes (or fails).

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void updateFileAttributesComplete(SSHPlexUpdateFileAttributesCompleteEvent e) {}
  ...
}

public class SSHPlexUpdateFileAttributesCompleteEvent {
  public String operationId;
  public int errorCode;
  public String errorDescription;
  public String remoteFile;
  public String remotePath;
}
```

## Remarks

This event fires when an UpdateFileAttributes operation completes either successfully or unsuccessfully. If the operation succeeded, *ErrorCode* will be *0*. If the operation failed or was canceled by [CancelOperation](#canceloperation-method-sshplex-class), *ErrorCode* will contain a nonzero value and *ErrorDescription* will contain a description of the error. Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for possible error codes.

*OperationId* is the Id of the completed operation. This value will match the Operation Id returned by the method that initiated the operation.

*ErrorCode* holds the error code (if any). A value of 0 indicates success. A positive value indicates failure.

*ErrorDescription* is a description of the error.

*RemoteFile* is the remote file that was specified when the operation was initiated.

*RemotePath* is the remote path that was specified when the operation was initiated.

# UploadComplete Event ([SSHPlex](#sshplex-class) Class)

Fired when an upload operation completes (or fails).

## Syntax

```text
public class DefaultSSHPlexEventListener implements SSHPlexEventListener {
  ...
  public void uploadComplete(SSHPlexUploadCompleteEvent e) {}
  ...
}

public class SSHPlexUploadCompleteEvent {
  public String operationId;
  public int errorCode;
  public String errorDescription;
  public String localFile;
  public String remoteFile;
  public String remotePath;
}
```

## Remarks

This event fires when an upload operation completes either successfully or unsuccessfully. If the operation succeeded, *ErrorCode* will be *0*. If the operation failed or was canceled by [CancelOperation](#canceloperation-method-sshplex-class), *ErrorCode* will contain a nonzero value and *ErrorDescription* will contain a description of the error. Please refer to the [Error Codes](#trappable-errors-sshplex-class) section for possible error codes.

*OperationId* is the Id of the completed operation. This value will match the Operation Id returned by the method that initiated the operation.

*ErrorCode* holds the error code (if any). A value of 0 indicates success. A positive value indicates failure.

*ErrorDescription* is a description of the error.

*LocalFile* is the local file that was specified when the operation was initiated.

*RemoteFile* is the remote file that was specified when the operation was initiated.

*RemotePath* is the remote path that was specified when the operation was initiated.

# Certificate Type

This is the digital certificate being used.

## Remarks

This type describes the current digital certificate. The certificate may be a public or private key. The fields are used to identify or select certificates.

The following fields are available:

- [EffectiveDate](#Certificate_f_EffectiveDate)

- [ExpirationDate](#Certificate_f_ExpirationDate)

- [ExtendedKeyUsage](#Certificate_f_ExtendedKeyUsage)

- [Fingerprint](#Certificate_f_Fingerprint)

- [FingerprintSHA1](#Certificate_f_FingerprintSHA1)

- [FingerprintSHA256](#Certificate_f_FingerprintSHA256)

- [Issuer](#Certificate_f_Issuer)

- [KeyPassword](#Certificate_f_KeyPassword)

- [PrivateKey](#Certificate_f_PrivateKey)

- [PrivateKeyAvailable](#Certificate_f_PrivateKeyAvailable)

- [PrivateKeyContainer](#Certificate_f_PrivateKeyContainer)

- [PublicKey](#Certificate_f_PublicKey)

- [PublicKeyAlgorithm](#Certificate_f_PublicKeyAlgorithm)

- [PublicKeyLength](#Certificate_f_PublicKeyLength)

- [SerialNumber](#Certificate_f_SerialNumber)

- [SignatureAlgorithm](#Certificate_f_SignatureAlgorithm)

- [Store](#Certificate_f_Store)

- [StorePassword](#Certificate_f_StorePassword)

- [StoreType](#Certificate_f_StoreType)

- [SubjectAltNames](#Certificate_f_SubjectAltNames)

- [ThumbprintMD5](#Certificate_f_ThumbprintMD5)

- [ThumbprintSHA1](#Certificate_f_ThumbprintSHA1)

- [ThumbprintSHA256](#Certificate_f_ThumbprintSHA256)

- [Usage](#Certificate_f_Usage)

- [UsageFlags](#Certificate_f_UsageFlags)

- [Version](#Certificate_f_Version)

- [Subject](#Certificate_f_Subject)

- [Encoded](#Certificate_f_Encoded)

## Fields

 **EffectiveDate** *String (read-only)*
*Default Value: ""*

The date on which this certificate becomes valid. Before this date, it is not valid. The date is localized to the system's time zone. The following example illustrates the format of an encoded date:

23-Jan-2000 15:00:00.

 **ExpirationDate** *String (read-only)*
*Default Value: ""*

The date on which the certificate expires. After this date, the certificate will no longer be valid. The date is localized to the system's time zone. The following example illustrates the format of an encoded date:

23-Jan-2001 15:00:00.

 **ExtendedKeyUsage** *String (read-only)*
*Default Value: ""*

A comma-delimited list of extended key usage identifiers. These are the same as ASN.1 object identifiers (OIDs).

 **Fingerprint** *String (read-only)*
*Default Value: ""*

The hex-encoded, 16-byte MD5 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.

The following example illustrates the format: *bc:2a:72:af:fe:58:17:43:7a:5f:ba:5a:7c:90:f7:02*

 **FingerprintSHA1** *String (read-only)*
*Default Value: ""*

The hex-encoded, 20-byte SHA-1 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.

The following example illustrates the format: *30:7b:fa:38:65:83:ff:da:b4:4e:07:3f:17:b8:a4:ed:80:be:ff:84*

 **FingerprintSHA256** *String (read-only)*
*Default Value: ""*

The hex-encoded, 32-byte SHA-256 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.

The following example illustrates the format: *6a:80:5c:33:a9:43:ea:b0:96:12:8a:64:96:30:ef:4a:8a:96:86:ce:f4:c7:be:10:24:8e:2b:60:9e:f3:59:53*

 **Issuer** *String (read-only)*
*Default Value: ""*

The issuer of the certificate. This field contains a string representation of the name of the issuing authority for the certificate.

 **KeyPassword** *String*
*Default Value: ""*

The password for the certificate's private key (if any).

Some certificate stores may individually protect certificates' private keys, separate from the standard protection offered by the [StorePassword](#Certificate_f_StorePassword). This field can be used to read such password-protected private keys.

NOTE: This property defaults to the value of [StorePassword](#Certificate_f_StorePassword). To clear it, you must set the property to the empty string (""). It can be set at any time, but when the private key's password is different from the store's password, then it must be set before calling [PrivateKey](#Certificate_f_PrivateKey).

 **PrivateKey** *String (read-only)*
*Default Value: ""*

The private key of the certificate (if available). The key is provided as PEM/Base64-encoded data.

NOTE: The [PrivateKey](#Certificate_f_PrivateKey) may be available but not exportable. In this case, [PrivateKey](#Certificate_f_PrivateKey) returns an empty string.

 **PrivateKeyAvailable** *boolean (read-only)*
*Default Value: False*

Whether a [PrivateKey](#Certificate_f_PrivateKey) is available for the selected certificate. If [PrivateKeyAvailable](#Certificate_f_PrivateKeyAvailable) is True, the certificate may be used for authentication purposes (e.g., server authentication).

 **PrivateKeyContainer** *String (read-only)*
*Default Value: ""*

The name of the [PrivateKey](#Certificate_f_PrivateKey) container for the certificate (if available). This functionality is available only on Windows platforms.

 **PublicKey** *String (read-only)*
*Default Value: ""*

The public key of the certificate. The key is provided as PEM/Base64-encoded data.

 **PublicKeyAlgorithm** *String (read-only)*
*Default Value: ""*

The textual description of the certificate's public key algorithm. The property contains either the name of the algorithm (e.g., "RSA" or "RSA_DH") or an object identifier (OID) string representing the algorithm.

 **PublicKeyLength** *int (read-only)*
*Default Value: 0*

The length of the certificate's public key (in bits). Common values are 512, 1024, and 2048.

 **SerialNumber** *String (read-only)*
*Default Value: ""*

The serial number of the certificate encoded as a string. The number is encoded as a series of hexadecimal digits, with each pair representing a byte of the serial number.

 **SignatureAlgorithm** *String (read-only)*
*Default Value: ""*

The text description of the certificate's signature algorithm. The property contains either the name of the algorithm (e.g., "RSA" or "RSA_MD5RSA") or an object identifier (OID) string representing the algorithm.

 **Store** *String*
*Default Value: "MY"*

The name of the certificate store for the client certificate.

The [StoreType](#Certificate_f_StoreType) field denotes the type of the certificate store specified by [Store](#Certificate_f_Store). If the store is password-protected, specify the password in [StorePassword](#Certificate_f_StorePassword).

[Store](#Certificate_f_Store) is used in conjunction with the [Subject](#Certificate_f_Subject) field to specify client certificates. If [Store](#Certificate_f_Store) has a value, and [Subject](#Certificate_f_Subject) or [Encoded](#Certificate_f_Encoded) is set, a search for a certificate is initiated. Please see the [Subject](#Certificate_f_Subject) field for details.

 Designations of certificate stores are platform dependent.

The following designations are the most common User and Machine certificate stores in Windows:

|  |  |
| --- | --- |
| MY | A certificate store holding personal certificates with their associated private keys. |
| CA | Certifying authority certificates. |
| ROOT | Root certificates. |

In Java, the certificate store normally is a file containing certificates and optional private keys.

When the certificate store type is *cstPFXFile*, this property must be set to the name of the file. When the type is *cstPFXBlob*, the property must be set to the binary contents of a PFX file (i.e., PKCS#12 certificate store).

 **StoreB** *byte[]*
*Default Value: "MY"*

The name of the certificate store for the client certificate.

The [StoreType](#Certificate_f_StoreType) field denotes the type of the certificate store specified by [Store](#Certificate_f_Store). If the store is password-protected, specify the password in [StorePassword](#Certificate_f_StorePassword).

[Store](#Certificate_f_Store) is used in conjunction with the [Subject](#Certificate_f_Subject) field to specify client certificates. If [Store](#Certificate_f_Store) has a value, and [Subject](#Certificate_f_Subject) or [Encoded](#Certificate_f_Encoded) is set, a search for a certificate is initiated. Please see the [Subject](#Certificate_f_Subject) field for details.

 Designations of certificate stores are platform dependent.

The following designations are the most common User and Machine certificate stores in Windows:

|  |  |
| --- | --- |
| MY | A certificate store holding personal certificates with their associated private keys. |
| CA | Certifying authority certificates. |
| ROOT | Root certificates. |

In Java, the certificate store normally is a file containing certificates and optional private keys.

When the certificate store type is *cstPFXFile*, this property must be set to the name of the file. When the type is *cstPFXBlob*, the property must be set to the binary contents of a PFX file (i.e., PKCS#12 certificate store).

 **StorePassword** *String*
*Default Value: ""*

If the type of certificate store requires a password, this field is used to specify the password needed to open the certificate store.

 **StoreType** *int*
*Default Value: 0*

The type of certificate store for this certificate.

 The class supports both public and private keys in a variety of formats. When the *cstAuto* value is used, the class will automatically determine the type. This field can take one of the following values:

```csharp
sftp.SSHCert = new Certificate(CertStoreTypes.cstPKCS11,
                               @"C:\Program Files\OpenSC Project\OpenSC\pkcs11\opensc-pkcs11.dll",
                               "123456", // PIN
                               "CN=cert_subject");
sftp.SSHUser = "test";
sftp.SSHLogon("myhost", 22);
```

```csharp
certmgr.CertStoreType = CertStoreTypes.cstPKCS11;
certmgr.OnCertList += (s, e) => {
  secKeyBlob = e.CertEncoded;
};
certmgr.CertStore = @"C:\Program Files\OpenSC Project\OpenSC\pkcs11\opensc-pkcs11.dll";
certmgr.CertStorePassword = "123456"; // PIN
certmgr.ListStoreCertificates();

sftp.SSHCert = new Certificate(CertStoreTypes.cstPKCS11, secKeyBlob, "123456", "*");
sftp.SSHUser = "test";
sftp.SSHLogon("myhost", 22);
```

|  |  |
| --- | --- |
| 0 (cstUser - default) | For Windows, this specifies that the certificate store is a certificate store owned by the current user. NOTE: This store type is not available in Java. |
| 1 (cstMachine) | For Windows, this specifies that the certificate store is a machine store. NOTE: This store type is not available in Java. |
| 2 (cstPFXFile) | The certificate store is the name of a PFX (PKCS#12) file containing certificates. |
| 3 (cstPFXBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in PFX (PKCS#12) format. |
| 4 (cstJKSFile) | The certificate store is the name of a Java Key Store (JKS) file containing certificates. NOTE: This store type is only available in Java. |
| 5 (cstJKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in Java Key Store (JKS) format. NOTE: This store type is only available in Java. |
| 6 (cstPEMKeyFile) | The certificate store is the name of a PEM-encoded file that contains a private key and an optional certificate. |
| 7 (cstPEMKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a private key and an optional certificate. |
| 8 (cstPublicKeyFile) | The certificate store is the name of a file that contains a PEM- or DER-encoded public key certificate. |
| 9 (cstPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a PEM- or DER-encoded public key certificate. |
| 10 (cstSSHPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains an SSH-style public key. |
| 11 (cstP7BFile) | The certificate store is the name of a PKCS#7 file containing certificates. |
| 12 (cstP7BBlob) | The certificate store is a string (binary) representing a certificate store in PKCS#7 format. |
| 13 (cstSSHPublicKeyFile) | The certificate store is the name of a file that contains an SSH-style public key. |
| 14 (cstPPKFile) | The certificate store is the name of a file that contains a PPK (PuTTY Private Key). |
| 15 (cstPPKBlob) | The certificate store is a string (binary) that contains a PPK (PuTTY Private Key). |
| 16 (cstXMLFile) | The certificate store is the name of a file that contains a certificate in XML format. |
| 17 (cstXMLBlob) | The certificate store is a string that contains a certificate in XML format. |
| 18 (cstJWKFile) | The certificate store is the name of a file that contains a JWK (JSON Web Key). |
| 19 (cstJWKBlob) | The certificate store is a string that contains a JWK (JSON Web Key). |
| 21 (cstBCFKSFile) | The certificate store is the name of a file that contains a BCFKS (Bouncy Castle FIPS Key Store). NOTE: This store type is only available in Java and .NET. |
| 22 (cstBCFKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in BCFKS (Bouncy Castle FIPS Key Store) format. NOTE: This store type is only available in Java and .NET. |
| 23 (cstPKCS11) | The certificate is present on a physical security key accessible via a PKCS#11 interface. To use a security key, create a new [Certificate](#certificate-type) object and pass cstPKCS11 as the [StoreType](#Certificate_f_StoreType), the full path of the PKCS#11 DLL as the [Store](#Certificate_f_Store), and the PIN as the [StorePassword](#Certificate_f_StorePassword). Code Example. SSH Authentication with Security Key (without CertMgr): Alternatively, collect the necessary data using the [CertMgr](CertMgr.md#CertMgr) class by calling the [ListStoreCertificates](CertMgr.md#CertMgr_m_ListStoreCertificates) method after setting the corresponding properties accordingly. The certificate information returned in the [CertList](CertMgr.md#CertMgr_e_CertList) event's CertEncoded parameter may be saved for later use. When using a certificate obtained with this approach, pass the previously saved security key information as the [Store](#Certificate_f_Store) and set [StorePassword](#Certificate_f_StorePassword) to the PIN. Code Example. SSH Authentication with Security Key (with CertMgr): |
| 99 (cstAuto) | The store type is automatically detected from the input data. This setting may be used with both public and private keys and can detect any of the supported formats automatically. |

 **SubjectAltNames** *String (read-only)*
*Default Value: ""*

Comma-separated lists of alternative subject names for the certificate.

 **ThumbprintMD5** *String (read-only)*
*Default Value: ""*

The MD5 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.

 **ThumbprintSHA1** *String (read-only)*
*Default Value: ""*

The SHA-1 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.

 **ThumbprintSHA256** *String (read-only)*
*Default Value: ""*

The SHA-256 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.

 **Usage** *String (read-only)*
*Default Value: ""*

The text description of [UsageFlags](#Certificate_f_UsageFlags).

This value will be one or more of the following strings and will be separated by commas:

- Digital Signature
- Non-Repudiation
- Key Encipherment
- Data Encipherment
- Key Agreement
- Certificate Signing
- CRL Signing
- Encipher Only

If the provider is OpenSSL, the value is a comma-separated list of X.509 certificate extension names.

 **UsageFlags** *int (read-only)*
*Default Value: 0*

The flags that show intended use for the certificate. The value of [UsageFlags](#Certificate_f_UsageFlags) is a combination of the following flags:

|  |  |
| --- | --- |
| 0x80 | Digital Signature |
| 0x40 | Non-Repudiation |
| 0x20 | Key Encipherment |
| 0x10 | Data Encipherment |
| 0x08 | Key Agreement |
| 0x04 | Certificate Signing |
| 0x02 | CRL Signing |
| 0x01 | Encipher Only |

Please see the [Usage](#Certificate_f_Usage) field for a text representation of [UsageFlags](#Certificate_f_UsageFlags).

This functionality currently is not available when the provider is OpenSSL.

 **Version** *String (read-only)*
*Default Value: ""*

The certificate's version number. The possible values are the strings "V1", "V2", and "V3".

 **Subject** *String*
*Default Value: ""*

The subject of the certificate used for client authentication.

This field will be populated with the full subject of the loaded certificate. When loading a certificate, the subject is used to locate the certificate in the store.

If an exact match is not found, the store is searched for subjects containing the value of the property.

If a match is still not found, the property is set to an empty string, and no certificate is selected.

The special value "*" picks a random certificate in the certificate store.

The certificate subject is a comma-separated list of distinguished name fields and values. For instance, "CN=www.server.com, OU=test, C=US, E=example@email.com". Common fields and their meanings are as follows:

| Field | Meaning |
| --- | --- |
| CN | Common Name. This is commonly a hostname like www.server.com. |
| O | Organization |
| OU | Organizational Unit |
| L | Locality |
| S | State |
| C | Country |
| E | Email Address |

If a field value contains a comma, it must be quoted.

 **Encoded** *String*
*Default Value: ""*

The certificate (PEM/Base64 encoded). This field is used to assign a specific certificate. The [Store](#Certificate_f_Store) and [Subject](#Certificate_f_Subject) fields also may be used to specify a certificate.

When [Encoded](#Certificate_f_Encoded) is set, a search is initiated in the current [Store](#Certificate_f_Store) for the private key of the certificate. If the key is found, [Subject](#Certificate_f_Subject) is updated to reflect the full subject of the selected certificate; otherwise, [Subject](#Certificate_f_Subject) is set to an empty string.

 **EncodedB** *byte[]*
*Default Value: ""*

The certificate (PEM/Base64 encoded). This field is used to assign a specific certificate. The [Store](#Certificate_f_Store) and [Subject](#Certificate_f_Subject) fields also may be used to specify a certificate.

When [Encoded](#Certificate_f_Encoded) is set, a search is initiated in the current [Store](#Certificate_f_Store) for the private key of the certificate. If the key is found, [Subject](#Certificate_f_Subject) is updated to reflect the full subject of the selected certificate; otherwise, [Subject](#Certificate_f_Subject) is set to an empty string.

## Constructors

```text
public Certificate();
```

 Creates a instance whose properties can be set.

```text
public Certificate(String certificateFile);
```

 Opens * CertificateFile * and reads out the contents as an X.509 public key.

```text
public Certificate(byte[] encoded);
```

 Parses * Encoded * as an X.509 public key.

```text
public Certificate(int storeType, String store, String storePassword, String subject);
```

 * StoreType * identifies the type of certificate store to use. See for descriptions of the different certificate stores. * Store * is a file containing the certificate store. * StorePassword * is the password used to protect the store.

 After the store has been successfully opened, the class will attempt to find the certificate identified by * Subject * . This can be either a complete or a substring match of the X.509 certificate's subject Distinguished Name (DN). The * Subject * parameter can also take an MD5, SHA-1, or SHA-256 thumbprint of the certificate to load in a "Thumbprint=value" format.

```text
public Certificate(int storeType, String store, String storePassword, String subject, String configurationString);
```

 * StoreType * identifies the type of certificate store to use. See for descriptions of the different certificate stores. * Store * is a file containing the certificate store. * StorePassword * is the password used to protect the store.

 * ConfigurationString * is a newline-separated list of name-value pairs that may be used to modify the default behavior. Possible values include "PersistPFXKey", which shows whether or not the PFX key is persisted after performing operations with the private key. This correlates to the PKCS12_NO_PERSIST_KEY CryptoAPI option. The default value is True (the key is persisted). "Thumbprint" - an MD5, SHA-1, or SHA-256 thumbprint of the certificate to load. When specified, this value is used to select the certificate in the store. This is applicable to the * cstUser * , * cstMachine * , * cstPublicKeyFile * , and * cstPFXFile * store types. "UseInternalSecurityAPI" shows whether the platform (default) or the internal security API is used when performing certificate-related operations.

 After the store has been successfully opened, the class will attempt to find the certificate identified by * Subject * . This can be either a complete or a substring match of the X.509 certificate's subject Distinguished Name (DN). The * Subject * parameter can also take an MD5, SHA-1, or SHA-256 thumbprint of the certificate to load in a "Thumbprint=value" format.

```text
public Certificate(int storeType, String store, String storePassword, byte[] encoded);
```

 * StoreType * identifies the type of certificate store to use. See for descriptions of the different certificate stores. * Store * is a file containing the certificate store. * StorePassword * is the password used to protect the store.

 After the store has been successfully opened, the class will load * Encoded * as an X.509 certificate and search the opened store for a corresponding private key.

```text
public Certificate(int storeType, byte[] store, String storePassword, String subject);
```

 * StoreType * identifies the type of certificate store to use. See for descriptions of the different certificate stores. * Store * is a byte array containing the certificate data. * StorePassword * is the password used to protect the store.

 After the store has been successfully opened, the class will attempt to find the certificate identified by * Subject * . This can be either a complete or a substring match of the X.509 certificate's subject Distinguished Name (DN). The * Subject * parameter can also take an MD5, SHA-1, or SHA-256 thumbprint of the certificate to load in a "Thumbprint=value" format.

```text
public Certificate(int storeType, byte[] store, String storePassword, String subject, String configurationString);
```

 * StoreType * identifies the type of certificate store to use. See for descriptions of the different certificate stores. * Store * is a byte array containing the certificate data. * StorePassword * is the password used to protect the store.

 After the store has been successfully opened, the class will attempt to find the certificate identified by * Subject * . This can be either a complete or a substring match of the X.509 certificate's subject Distinguished Name (DN). The * Subject * parameter can also take an MD5, SHA-1, or SHA-256 thumbprint of the certificate to load in a "Thumbprint=value" format.

```text
public Certificate(int storeType, byte[] store, String storePassword, byte[] encoded);
```

 * StoreType * identifies the type of certificate store to use. See for descriptions of the different certificate stores. * Store * is a byte array containing the certificate data. * StorePassword * is the password used to protect the store.

 After the store has been successfully opened, the class will load * Encoded * as an X.509 certificate and search the opened store for a corresponding private key.

# DirEntry Type

This is a listing in a directory returned from the server.

## Remarks

The DirEntry listings are filled out by the class when a directory listing is received as a response to a ListDirectory or ListDirectoryLong call. The server returns a listing for each directory and file at the current path that exists. This listing is parsed into a directory entry.

If ListDirectoryLong is called, all of the fields listed below are supplied by the server. When the ListDirectory method is called, however, the [FileSize](#DirEntry_f_FileSize), [FileTime](#DirEntry_f_FileTime), and [IsDir](#DirEntry_f_IsDir) fields all are left empty by the server. In this case, the only field it returns is the [FileName](#DirEntry_f_FileName).

The full line for the directory entry is provided by the [Entry](#DirEntry_f_Entry) field.

The following fields are available:

- [Entry](#DirEntry_f_Entry)

- [FileName](#DirEntry_f_FileName)

- [FileSize](#DirEntry_f_FileSize)

- [FileTime](#DirEntry_f_FileTime)

- [IsDir](#DirEntry_f_IsDir)

- [IsSymlink](#DirEntry_f_IsSymlink)

## Fields

 **Entry** *String (read-only)*
*Default Value: ""*

This field contains the raw entry as received from the server. It is the complete unparsed entry in the directory listing.

 **FileName** *String (read-only)*
*Default Value: ""*

This field shows the file name in the last directory listing. This also may be the directory name if a directory is being listed. You can tell whether it is a file or a directory by the Boolean [IsDir](#DirEntry_f_IsDir) field.

 **FileSize** *long (read-only)*
*Default Value: 0*

This field shows the file size in the last directory listing.

 **FileTime** *String (read-only)*
*Default Value: ""*

This field shows the file time in the last directory listing. This contains the date/time stamp in which the file was created.

NOTE: In Unix systems, the date is given in two types of formats: If the date is in the past 12 months, the exact time is specified and the year is omitted. Otherwise, only the date and the year, but not hours or minutes, are given.

 **IsDir** *boolean (read-only)*
*Default Value: False*

This field specifies whether entries in the last directory listing are directories. This Boolean value denotes whether or not the directory entry listed in [FileName](#DirEntry_f_FileName) is a file or a directory.

 **IsSymlink** *boolean (read-only)*
*Default Value: False*

This field indicates whether the entry is a symbolic link. When the entry is a symbolic link, the value of [IsDir](#DirEntry_f_IsDir) will always be *False* because this information is not returned in the directory listing. To inspect a symlink to determine if it is a link to a file or a folder, set RemoteFile and query the FileAttributes.[IsDir](#DirEntry_f_IsDir) field.

## Constructors

```text
public DirEntry();
```

# Firewall Type

The firewall the class will connect through.

## Remarks

When connecting through a firewall, this type is used to specify different properties of the firewall, such as the firewall [Host](#Firewall_f_Host) and the [FirewallType](#Firewall_f_FirewallType).

The following fields are available:

- [AutoDetect](#Firewall_f_AutoDetect)

- [FirewallType](#Firewall_f_FirewallType)

- [Host](#Firewall_f_Host)

- [Password](#Firewall_f_Password)

- [Port](#Firewall_f_Port)

- [User](#Firewall_f_User)

## Fields

 **AutoDetect** *boolean*
*Default Value: False*

Whether to automatically detect and use firewall system settings, if available.

Connection information will first be obtained from Java system properties, such as *http.proxyHost* and *https.proxyHost*. Java properties may be set in a variety of ways; please consult the Java documentation for information about how firewall and proxy values can be specified.

If no Java system properties define connection information, the class will inspect the Windows registry for connection information that may be present on the system (applicable only on Windows systems).

 **FirewallType** *int*
*Default Value: 0*

The type of firewall to connect through. The applicable values are as follows:

|  |  |
| --- | --- |
| fwNone (0) | No firewall (default setting). |
| fwTunnel (1) | Connect through a tunneling proxy. [Port](#Firewall_f_Port) is set to 80. |
| fwSOCKS4 (2) | Connect through a SOCKS4 Proxy. [Port](#Firewall_f_Port) is set to 1080. |
| fwSOCKS5 (3) | Connect through a SOCKS5 Proxy. [Port](#Firewall_f_Port) is set to 1080. |
| fwSOCKS4A (10) | Connect through a SOCKS4A Proxy. [Port](#Firewall_f_Port) is set to 1080. |

 **Host** *String*
*Default Value: ""*

The name or IP address of the firewall (optional). If a [Host](#Firewall_f_Host) is given, the requested connections will be authenticated through the specified firewall when connecting.

If this field is set to a Domain Name, a DNS request is initiated. Upon successful termination of the request, this field is set to the corresponding address. If the search is not successful, the class throws an exception.

 **Password** *String*
*Default Value: ""*

A password if authentication is to be used when connecting through the firewall. If [Host](#Firewall_f_Host) is specified, the [User](#Firewall_f_User) and [Password](#Firewall_f_Password) fields are used to connect and authenticate to the given firewall. If the authentication fails, the class throws an exception.

 **Port** *int*
*Default Value: 0*

The Transmission Control Protocol (TCP) port for the firewall [Host](#Firewall_f_Host). See the description of the [Host](#Firewall_f_Host) field for details.

NOTE: This field is set automatically when [FirewallType](#Firewall_f_FirewallType) is set to a valid value. See the description of the [FirewallType](#Firewall_f_FirewallType) field for details.

 **User** *String*
*Default Value: ""*

A username if authentication is to be used when connecting through a firewall. If [Host](#Firewall_f_Host) is specified, this field and the [Password](#Firewall_f_Password) field are used to connect and authenticate to the given [Firewall](#firewall-type). If the authentication fails, the class throws an exception.

## Constructors

```text
public Firewall();
```

# SFTPFileAttributes Type

Includes a set of attributes for a file existing on an secure file transfer protocol (SFTP) server.

## Remarks

This type describes a file residing on an SFTP server.

The following fields are available:

- [AccessTime](#SFTPFileAttributes_f_AccessTime)

- [AccessTimeNanos](#SFTPFileAttributes_f_AccessTimeNanos)

- [ACL](#SFTPFileAttributes_f_ACL)

- [AllocationSize](#SFTPFileAttributes_f_AllocationSize)

- [AttributeBits](#SFTPFileAttributes_f_AttributeBits)

- [AttributeBitsValid](#SFTPFileAttributes_f_AttributeBitsValid)

- [CreationTime](#SFTPFileAttributes_f_CreationTime)

- [CreationTimeNanos](#SFTPFileAttributes_f_CreationTimeNanos)

- [FileType](#SFTPFileAttributes_f_FileType)

- [Flags](#SFTPFileAttributes_f_Flags)

- [GroupId](#SFTPFileAttributes_f_GroupId)

- [IsDir](#SFTPFileAttributes_f_IsDir)

- [IsSymlink](#SFTPFileAttributes_f_IsSymlink)

- [LinkCount](#SFTPFileAttributes_f_LinkCount)

- [MIMEType](#SFTPFileAttributes_f_MIMEType)

- [ModifiedTime](#SFTPFileAttributes_f_ModifiedTime)

- [ModifiedTimeNanos](#SFTPFileAttributes_f_ModifiedTimeNanos)

- [OwnerId](#SFTPFileAttributes_f_OwnerId)

- [Permissions](#SFTPFileAttributes_f_Permissions)

- [PermissionsOctal](#SFTPFileAttributes_f_PermissionsOctal)

- [Size](#SFTPFileAttributes_f_Size)

- [TextHint](#SFTPFileAttributes_f_TextHint)

- [UntranslatedName](#SFTPFileAttributes_f_UntranslatedName)

## Fields

 **AccessTime** *long*
*Default Value: 0*

Contains the number of milliseconds since 12:00:00 AM, January 1, 1970, when this file was last accessed.

 **AccessTimeNanos** *int*
*Default Value: 0*

Contains a subsecond value associated with this file's [AccessTime](#SFTPFileAttributes_f_AccessTime).

 **ACL** *String*
*Default Value: ""*

Contains a string containing an access control list (ACL).

 **AllocationSize** *long (read-only)*
*Default Value: 0*

Specifies the size, in bytes, that this file consumes on disk.

 **AttributeBits** *int (read-only)*
*Default Value: 0*

[AttributeBits](#SFTPFileAttributes_f_AttributeBits) and [AttributeBitsValid](#SFTPFileAttributes_f_AttributeBitsValid) each contain a bitmask representing attributes of the file on the secure file transfer protocol (SFTP) server. These two values must be interpreted together. Any value present in [AttributeBitsValid](#SFTPFileAttributes_f_AttributeBitsValid) must be ignored in [AttributeBits](#SFTPFileAttributes_f_AttributeBits). This is done so that the server and client can communicate the attributes they know about without confusing any bits they do not understand.

This field can have one or more of the following values ORed together:

- 0x00000001 (SSH_FILEXFER_ATTR_FLAGS_READONLY)
- 0x00000002 (SSH_FILEXFER_ATTR_FLAGS_SYSTEM)
- 0x00000004 (SSH_FILEXFER_ATTR_FLAGS_HIDDEN)
- 0x00000008 (SSH_FILEXFER_ATTR_FLAGS_CASE_INSENSITIVE)
- 0x00000010 (SSH_FILEXFER_ATTR_FLAGS_ARCHIVE)
- 0x00000020 (SSH_FILEXFER_ATTR_FLAGS_ENCRYPTED)
- 0x00000040 (SSH_FILEXFER_ATTR_FLAGS_COMPRESSED)
- 0x00000080 (SSH_FILEXFER_ATTR_FLAGS_SPARSE)
- 0x00000100 (SSH_FILEXFER_ATTR_FLAGS_APPEND_ONLY)
- 0x00000200 (SSH_FILEXFER_ATTR_FLAGS_IMMUTABLE)
- 0x00000400 (SSH_FILEXFER_ATTR_FLAGS_SYNC)
- 0x00000800 (SSH_FILEXFER_ATTR_FLAGS_TRANSLATION_ERR)

 **AttributeBitsValid** *int (read-only)*
*Default Value: 0*

[AttributeBits](#SFTPFileAttributes_f_AttributeBits) and [AttributeBitsValid](#SFTPFileAttributes_f_AttributeBitsValid) each contain a bitmask representing attributes of the file on the secure file transfer protocol (SFTP) server. These two values must be interpreted together. Any value present in [AttributeBitsValid](#SFTPFileAttributes_f_AttributeBitsValid) must be ignored in [AttributeBits](#SFTPFileAttributes_f_AttributeBits). This is done so that the server and client can communicate the attributes they know about without confusing any bits they do not understand.

This field can have one or more of the following values ORed together:

- 0x00000001 (SSH_FILEXFER_ATTR_FLAGS_READONLY)
- 0x00000002 (SSH_FILEXFER_ATTR_FLAGS_SYSTEM)
- 0x00000004 (SSH_FILEXFER_ATTR_FLAGS_HIDDEN)
- 0x00000008 (SSH_FILEXFER_ATTR_FLAGS_CASE_INSENSITIVE)
- 0x00000010 (SSH_FILEXFER_ATTR_FLAGS_ARCHIVE)
- 0x00000020 (SSH_FILEXFER_ATTR_FLAGS_ENCRYPTED)
- 0x00000040 (SSH_FILEXFER_ATTR_FLAGS_COMPRESSED)
- 0x00000080 (SSH_FILEXFER_ATTR_FLAGS_SPARSE)
- 0x00000100 (SSH_FILEXFER_ATTR_FLAGS_APPEND_ONLY)
- 0x00000200 (SSH_FILEXFER_ATTR_FLAGS_IMMUTABLE)
- 0x00000400 (SSH_FILEXFER_ATTR_FLAGS_SYNC)
- 0x00000800 (SSH_FILEXFER_ATTR_FLAGS_TRANSLATION_ERR)

 **CreationTime** *long*
*Default Value: 0*

Specifies the number of milliseconds since 12:00:00 AM, January 1, 1970, when this file was created.

 **CreationTimeNanos** *int*
*Default Value: 0*

Contains a subsecond value associated with this file's [CreationTime](#SFTPFileAttributes_f_CreationTime).

 **FileType** *int (read-only)*
*Default Value: 0*

The type of file. [FileType](#SFTPFileAttributes_f_FileType) may be one of the following values:

|  |  |
| --- | --- |
| 1 (sftRegular - default) | A normal file. |
| 2 (sftDirectory) | A directory. |
| 3 (symlink) | The file is a Unix symbolic link. |
| 4 (sftSpecial) | The file type is a special system file. |
| 5 (sftUnknown) | The file type is unknown. |
| 6 (sftSocket) | The file handle is a socket handle. |
| 7 (sftCharDevice) | The file handle is a character input device. |
| 8 (sftBlockDevice) | The file handle is a block input device. |
| 9 (sftpFIFO) | The file handle is a buffering input device. |

 **Flags** *int*
*Default Value: 0*

[Flags](#SFTPFileAttributes_f_Flags) is an integer containing a bitmask that indicates which fields are valid. When retrieving file attributes from an secure file transfer protocol (SFTP) server, this field indicates which values were read by the class. When setting values, the field is used to determine which values get passed to the server.

[Flags](#SFTPFileAttributes_f_Flags) may be bitwise-ORed with any of the following values:

|  |  |
| --- | --- |
| 0x00000001 (SSH_FILEXFER_ATTR_SIZE) | [Size](#SFTPFileAttributes_f_Size) is valid. |
| 0x00000002 (SSH_FILXFER_ATTR_UIDGID) | [OwnerId](#SFTPFileAttributes_f_OwnerId) and [GroupId](#SFTPFileAttributes_f_GroupId) are valid. NOTE: this attribute is only valid when using SFTP protocol version 3. |
| 0x00000004 (SSH_FILEXFER_ATTR_PERMISSIONS) | [Permissions](#SFTPFileAttributes_f_Permissions) is valid. |
| 0x00000008 (SSH_FILEXFER_ATTR_ACCESSTIME) | [AccessTime](#SFTPFileAttributes_f_AccessTime) is valid. NOTE: For protocol version 3, this also denotes that [ModifiedTime](#SFTPFileAttributes_f_ModifiedTime) is valid. |
| 0x00000010 (SSH_FILEXFER_ATTR_CREATETIME) | [CreationTime](#SFTPFileAttributes_f_CreationTime) is valid. NOTE: This attribute is valid only when using SFTP protocol version 4 and above. |
| 0x00000020 (SSH_FILEXFER_ATTR_MODIFYTIME) | [ModifiedTime](#SFTPFileAttributes_f_ModifiedTime) is valid. NOTE: This attribute is valid only when using SFTP protocol version 4 and above. |
| 0x00000040 (SSH_FILEXFER_ATTR_ACL) | [ACL](#SFTPFileAttributes_f_ACL) is valid. NOTE: This attribute is valid only when using SFTP protocol version 4 and above. |
| 0x00000080 (SSH_FILEXFER_ATTR_OWNERGROUP) | [OwnerId](#SFTPFileAttributes_f_OwnerId) and [GroupId](#SFTPFileAttributes_f_GroupId) are valid. NOTE: This attribute is valid only when using SFTP protocol version 4 and above. |
| 0x00000100 (SSH_FILEXFER_ATTR_SUBSECOND_TIMES) | [AccessTimeNanos](#SFTPFileAttributes_f_AccessTimeNanos), [CreationTimeNanos](#SFTPFileAttributes_f_CreationTimeNanos) and [ModifiedTimeNanos](#SFTPFileAttributes_f_ModifiedTimeNanos) are valid. NOTE: This attribute is valid only when using SFTP protocol version 4 and above. |
| 0x00000200 (SSH_FILEXFER_ATTR_BITS) | [AttributeBits](#SFTPFileAttributes_f_AttributeBits) is valid. NOTE: This attribute is valid only when using SFTP protocol version 5 and above. When using SFTP protocol version 6 and above, this also indicates that [AttributeBitsValid](#SFTPFileAttributes_f_AttributeBitsValid) is valid. |
| 0x00000400 (SSH_FILEXFER_ATTR_ALLOCATION_SIZE) | [AllocationSize](#SFTPFileAttributes_f_AllocationSize) is valid. NOTE: This attribute is valid only when using SFTP protocol version 6 and above. |
| 0x00000800 (SSH_FILEXFER_ATTR_TEXT_HINT) | [TextHint](#SFTPFileAttributes_f_TextHint) is valid. NOTE: This attribute is valid only when using SFTP protocol version 6 and above. |
| 0x00001000 (SSH_FILEXFER_ATTR_MIME_TYPE) | [MIMEType](#SFTPFileAttributes_f_MIMEType) is valid. NOTE: This attribute is valid only when using SFTP protocol version 6 and above. |
| 0x00002000 (SSH_FILEXFER_ATTR_LINK_COUNT) | [LinkCount](#SFTPFileAttributes_f_LinkCount) is valid. NOTE: This attribute is valid only when using SFTP protocol version 6 and above. |
| 0x00004000 (SSH_FILEXFER_ATTR_UNTRANSLATED_NAME) | [UntranslatedName](#SFTPFileAttributes_f_UntranslatedName) is valid. NOTE: This attribute is valid only when using SFTP protocol version 6 and above. |
| 0x80000000 (SSH_FILEXFER_ATTR_EXTENDED) | Extended (vendor-specific) values are associated with the file. This attribute is currently ignored by the class. |

 **GroupId** *String*
*Default Value: ""*

Specifies the Id of the group that has access rights this file.

 **IsDir** *boolean (read-only)*
*Default Value: False*

Specifies whether or not the file represented by these attributes is a directory.

 **IsSymlink** *boolean (read-only)*
*Default Value: False*

Specifies whether or not the file or directory represented by these attributes is a symbolic link. This setting is applicable only when GetSymlinkAttrs is set to *True*. By default, the attributes of the actual file referred to by the link (not the symbolic link) are returned and this field will always be *False*.

 **LinkCount** *int (read-only)*
*Default Value: 0*

Includes the number of links that reference this file.

 **MIMEType** *String*
*Default Value: ""*

Specifies a value that can be used in the Content-Type header for a MIME entity part containing this file.

 **ModifiedTime** *long*
*Default Value: 0*

Specifies the number of milliseconds since 12:00:00 AM, January 1, 1970, that this file was last modified.

 **ModifiedTimeNanos** *int*
*Default Value: 0*

Includes a subsecond value associated with this file's [ModifiedTime](#SFTPFileAttributes_f_ModifiedTime).

 **OwnerId** *String*
*Default Value: ""*

Specifies the user Id of this file's owner.

 **Permissions** *int*
*Default Value: 0*

Includes a 32-bit integer containing the a POSIX-compatible file permission bitmask.

The bitmask should be interpreted as a decimal value of a series of octal digits. For example, an octal permission value of "100644" would be "33188" in Base10, and "40755" in octal would be "16877" in Base10.

The last three octal digits are the most significant and represent, in order, the file access capabilities of the file's owner, the owner's group, and other users. Each of these octal digits is, on its own, a 3-bit bitmask with the following possible values:

|  |  |
| --- | --- |
| 1 (001) | Execute |
| 2 (010) | Write |
| 4 (100) | Read |

An octal permission digit of 7 would have all three values set and would mean that the file can be read, written, and executed by that user class. For example, the octal permissions "100644" would have a value "6" for the owner, "4" for the group, and "4" for other users. This would be interpreted to mean that all users can read the file, no users can execute it, and only the owner can write it. The permissions "40755" would mean that all users can read and execute the file, but only the owner can write it.

The previous octal digit is another bitmask with the following values:

|  |  |
| --- | --- |
| 1 (001) | Sticky Bit - retain the file in memory for performance |
| 2 (010) | Set GID - sets the group Id of the process to the file's group Id upon execution (only for executable files) |
| 4 (100) | Set UID - sets the user Id of the process to the file's user Id upon execution (only for executable files) |

The previous two octal digits are used together as a bitmask to determine the type of file. This bitmask has the following values:

|  |  |
| --- | --- |
| 01 (000001) | Named pipe |
| 02 (000010) | Character special |
| 04 (000100) | Directory |
| 06 (000110) | Block special |
| 10 (001000) | Regular |
| 12 (001010) | Symbolic link |
| 14 (001100) | Socket |

For example, the octal file permissions "100644" would indicate a regular file and octal "40755" would indicate a directory.

NOTE: You will need to convert the octal permissions bitmask into its decimal representation.

 **PermissionsOctal** *String*
*Default Value: ""*

Includes an octal string containing the a POSIX-compatible file permission bitmask.

The bitmask should be interpreted as a series of octal digits. For example, "100644" and "40755".

The last three octal digits are the most significant and represent, in order, the file access capabilities of the file's owner, the owner's group, and other users. Each of these octal digits is, on its own, a 3-bit bitmask with the following possible values:

|  |  |
| --- | --- |
| 1 (001) | Execute |
| 2 (010) | Write |
| 4 (100) | Read |

An octal permission digit of 7 would have all three values set and would mean that the file can be read, written, and executed by that user class. For example, the octal permissions "100644" would have a value "6" for the owner, "4" for the group, and "4" for other users. This would be interpreted to mean that all users can read the file, no users can execute it, and only the owner can write it. The permissions "40755" would mean that all users can read and execute the file, but only the owner can write it.

The previous octal digit is another bitmask with the following values:

|  |  |
| --- | --- |
| 1 (001) | Sticky Bit - retain the file in memory for performance |
| 2 (010) | Set GID - sets the group Id of the process to the file's group Id upon execution (only for executable files) |
| 4 (100) | Set UID - sets the user Id of the process to the file's user Id upon execution (only for executable files) |

The previous two octal digits are used together as a bitmask to determine the type of file. This bitmask has the following values:

|  |  |
| --- | --- |
| 01 (000001) | Named pipe |
| 02 (000010) | Character special |
| 04 (000100) | Directory |
| 06 (000110) | Block special |
| 10 (001000) | Regular |
| 12 (001010) | Symbolic link |
| 14 (001100) | Socket |

For example, the octal file permissions "100644" would indicate a regular file and octal "40755" would indicate a directory.

 **Size** *long (read-only)*
*Default Value: 0*

Specifies the total size, in bytes, of this file.

 **TextHint** *int (read-only)*
*Default Value: 0*

Provides a hint for whether or not the file is a text file.

 **UntranslatedName** *String (read-only)*
*Default Value: ""*

Provides the untranslated name of the file.

# SSHPlexOperation Type

This object contains information about a currently running operation.

## Remarks

A SSHPlexOperation object is created and added to the [Operations](#operations-property-sshplex-class) collection each time a relevant method is called. The object will be removed from the [Operations](#operations-property-sshplex-class) collection when the operation completes, fails, or is canceled by the [CancelOperation](#canceloperation-method-sshplex-class) method.

The following fields are available:

- [OperationId](#SSHPlexOperation_f_OperationId)

## Fields

 **OperationId** *String (read-only)*
*Default Value: ""*

This field contains the Id of the currently running operation.

# Config Settings ([SSHPlex](#sshplex-class) Class)

 The class accepts one or more of the following *configuration settings*. Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the class, access to these *internal properties* is provided through the [Config](#config-method-sshplex-class) method.

### SFTPClient Config Settings

**AllowBackslashInName**: Whether backslashes are allowed in folder and file names.By default the backslash character is treated as a path separator and is not allowed in file and folder names. When this configuration setting is set to True, backslashes "\" are allowed in file and folder names and are not supported as path separators.

The default value is False.

**AsyncTransfer**: Controls whether simultaneous requests are made to read or write files.When set to True, the class will make several requests to read or write data before waiting for a response from the server. The maximum number of these requests that can be made is controlled by [MaxOutstandingPackets](#MaxOutstandingPackets). The default is True.

**AttrAccessTime**: Can be queried for the AccessTime file attribute during the DirList event.During [DirList](#dirlist-event-sshplex-class), this configuration setting can be queried to retrieve the value of the AccessTime file attribute if it is present in the response from the server.

**AttrCreationTime**: Can be queried for the CreationTime file attribute during the DirList event.During [DirList](#dirlist-event-sshplex-class), this configuration setting can be queried to retrieve the value of the CreationTime file attribute if it is present in the response from the server.

**AttrFileType**: Can be queried for the FileType file attribute during the DirList event.During [DirList](#dirlist-event-sshplex-class), this configuration setting can be queried to retrieve the value of the FileType file attribute if it is present in the response from the server.

**AttrGroupId**: Can be queried for the GroupId file attribute during the DirList event.During [DirList](#dirlist-event-sshplex-class), this configuration setting can be queried to retrieve the value of the GroupId file attribute if it is present in the response from the server.

**AttrLinkCount**: Can be queried for the LinkCount file attribute during the DirList event.During [DirList](#dirlist-event-sshplex-class), this configuration setting can be queried to retrieve the value of the LinkCount file attribute if it is present in the response from the server.

**AttrOwnerId**: Can be queried for the OwnerId file attribute during the DirList event.During [DirList](#dirlist-event-sshplex-class), this configuration setting can be queried to retrieve the value of the OwnerId file attribute if it is present in the response from the server.

**AttrPermission**: Can be queried for the Permissions file attribute during the DirList event.During [DirList](#dirlist-event-sshplex-class), this configuration setting can be queried to retrieve the value of the Permissions file attribute if it is present in the response from the server.

**CheckFileHash**: Compares a server-computed hash with a hash calculated locally.This setting may be queried to compare a hash of the file specified by [RemoteFile](#remotefile-property-sshplex-class) with the hash calculated by the server. When queried, the class will ask the server to calculate a hash of the file. It will then compute a hash locally and compare the values to confirm that the content that exists in the file specified by [RemoteFile](#remotefile-property-sshplex-class) is the same as the file specified by [LocalFile](#localfile-property-sshplex-class).

The server must support the *check-file* extension.

The class supports the following hash algorithms (in order of preference): *sha256,sha224,sha384,sha512,sha1,md5*. The server may choose to use any value from this list. No action is needed to configure the algorithm, the class will automatically use the same algorithm that the server users.

If the extension is unsupported or a mismatch in hashes is detected, the class throws an exception. If the hashes match the value, *True* is returned.

```csharp
  try {
    String flag = sftp.Config("CheckFileHash");
    // flag will be equal to "True"
  }
  catch (Exception e) {
    // mismatch
  }
```

**DisableRealPath**: Controls whether or not the SSH_FXP_REALPATH request is sent.This configuration setting can be used to skip sending the SSH_FXP_REALPATH request, which asks the server to canonicalize the value in RemotePath to an absolute path. The default value is False, which will cause the component to send the request normally. If set to True, the component will not send the SSH_FXP_REALPATH packet and will use the value in RemotePath directly.

**ExcludeFileMask**: Specifies a file mask for excluding files in directory listings.This configuration setting specifies one or more file masks to be excluded during a directory listing. When using multiple masks, any files that match one or more of the masks will not be listed. For example, setting ExcludeFileMask to "*.txt", RemoteFile to "", and calling [ListDirectory](#listdirectory-method-sshplex-class) will list all files except those ending in .txt.

**ExecFallbackCommand**: Specifies the fallback command to execute if the component fails to start the SFTP subsystem.This configuration setting specifies the fallback command to execute if the class fails to start the SFTP subsystem. By default, this config is set to the following commands:

*test -x /usr/lib/sftp-server && exec /usr/lib/sftp-server\ntest -x /usr/local/lib/sftp-server && exec /usr/local/lib/sftp-server\nexec sftp-server*

When initiating a connection to an SFTP server, the class will always attempt to start the SFTP subsystem for the given connection. However, in the event the SFTP subsystem cannot be started successfully for any reason, this command (or set of commands) will be executed on the server in an attempt to start the SFTP server.

If necessary, this config may be set to another command or an empty string. An empty string indicates there should be no fallback command executed, and the class will throw an exception assuming the SFTP subsystem cannot be started.

**FileMaskDelimiter**: Specifies a delimiter to use for setting multiple file masks in the RemoteFile property.If specified, the RemoteFile property will be split into separate masks based on the chosen delimiter. The default is "", which will cause the RemoteFile property to be treated as a single value. When using multiple masks, any files that match one or more of the masks will be listed. For example, setting FileMaskDelimiter to "," and setting RemoteFile to "*.txt, *.csv" will list all files ending in .txt or .csv.

**FiletimeFormat**: Specifies the format to use when returning filetime strings.If specified, the class will use this value to format the filetime string returned through the [DirList](#dirlist-event-sshplex-class) event. By default, the class will format the date as "MM/dd/yyyy HH:mm:ss".

**ForceMakeDirectory**: Controls whether calls to make a directory always attempt to create the directory on the server.By default (false), when [MakeDirectory](#makedirectory-method-sshplex-class) is called, the class will first check if a file or directory already exists at the specified path. If an entry exists, the operation will succeed without sending a directory creation request to the server. When this configuration setting is set to True, the class will always send the directory creation request to the server regardless of whether the path already exists. This allows the server to determine the outcome of the operation.

This is useful in cases where a file may exist at the specified path. In such cases, many servers will return an error when attempting to create a directory with the same name, allowing the application to detect the conflict.

**FreeSpace**: The free space on the remote server in bytes.This property is populated after calling the [GetSpaceInfo](#GetSpaceInfo) configuration setting. This holds the total free space available on the drive on the remote server in bytes.

**GetSpaceInfo**: Queries the server for drive usage information.This configuration setting queries the server for the total space and free space available on the remote drive. When querying this setting, the class will immediately request the information from the server. After calling this setting the [TotalSpace](#TotalSpace) and [FreeSpace](#FreeSpace) configuration settings will be populated.

NOTE: The server must understand either the "statvfs@openssh.com" or "space-available" extension for this operation to succeed.

**GetSymlinkAttrs**: Whether to get the attributes of the symbolic link, or the resource pointed to by the link.When [FileAttributes](#fileattributes-property-sshplex-class) is queried, the class will retrieve information about the [RemoteFile](#remotefile-property-sshplex-class). This configuration setting controls the behavior when [RemoteFile](#remotefile-property-sshplex-class) refers to a symbolic link on the server. By default the information returned by [FileAttributes](#fileattributes-property-sshplex-class) is that of the actual file pointed to by the symbolic link, not the symbolic link itself.

If it is desired to retrieve the attributes of the symbolic link itself, set [GetSymlinkAttrs](#GetSymlinkAttrs) to *True* before querying [FileAttributes](#fileattributes-property-sshplex-class).

**IgnoreFileMaskCasing**: Controls whether or not the file mask is case sensitive.This configuration setting applies to the file mask value specified by the [RemoteFile](#remotefile-property-sshplex-class) property. The default value is True. If set to False, the file mask will be case sensitive.

**LocalEOL**: When TransferMode is set, this specifies the line ending for the local system.This configuration setting is applicable only when [TransferMode](#TransferMode) is set to 1 (ASCII). The default value is a CrLf character sequence.

 When uploading or downloading, this value will be compared to [ServerEOL](#ServerEOL). If [ServerEOL](#ServerEOL) and [LocalEOL](#LocalEOL) are different, the line endings in the file being transferred will be converted to the line endings used by the destination. Line endings will be converted to the value in [LocalEOL](#LocalEOL) when downloading. Line endings will be converted to the value in [ServerEOL](#ServerEOL) when uploading. If [ServerEOL](#ServerEOL) and [LocalEOL](#LocalEOL) are the same, no conversion takes place.

The value supplied to this setting must be quoted. For example:

```text
component.Config("LocalEOL=\"" + myEOLSequence + "\"");
```

 Where myEOLSequence is a Cr, Lf, or CrLf character sequence.

Conversion will only happen when [TransferMode](#TransferMode) is set to 1 (ASCII) and [ServerEOL](#ServerEOL) and [LocalEOL](#LocalEOL) are different.

**LogSFTPFileData**: Whether SFTP file data is present in Debug logs.This configuration setting controls whether file data is logged when [LogLevel](#LogLevel) is set to *3* (Debug). When False (default), the file data being transferred is not included. Set this value to True to include all traffic include file data.

NOTE: Setting this value to True will increase the amount of data that are logged.

**MaskSensitiveData**: Masks passwords in logs.The default value is True. When set to True, the class will mask passwords that otherwise would appear in its logs.

**MaxFileData**: Specifies the maximum payload size of an SFTP packet.Although the Secure Shell (SSH) specification requires servers and clients to support SSH packets of at least 32,000 bytes, some server implementations limit the packet size to smaller values. MaxFileData provides a means by which the user can specify the maximum amount of data that can be put into a Secure File Transfer Protocol (SFTP) packet so that the class can communicate effectively with these servers. If you are having difficulty when uploading to a server, try setting MaxFileData size to a value smaller than 32,000.

Most servers that use smaller values will use a maximum SSH packet size of 16KB (16384). To most efficiently communicate with such servers, MaxFileData size should be set to 14745.

NOTE: Values larger than 64,000 (65,536) may not be respected by some servers (such as OpenSSH) and will result in unexpected behavior. If specifying a value, it is *recommended* to set a value less than or equal to 65,536.

The default value is 32,768.

**MaxOutstandingPackets**: Sets the maximum number of simultaneous read or write requests allowed.This configuration setting sets the number of simultaneous read or write requests allowed. This configuration setting applies only when [AsyncTransfer](#AsyncTransfer) is True. The default is *32*.

**NegotiatedProtocolVersion**: The negotiated SFTP version.This configuration setting returns the negotiated version of SFTP. Query this to ensure that the correct version was negotiated. This configuration setting is read only.

**NormalizeRemotePath**: Whether to normalize the RemotePath.When set to True, the component will normalize the value in RemotePath by appending a forward slash (/) if one is not already present. "." and ".." are special cases and will not be affected. The default is True.

**PreserveFileTime**: Preserves the file's timestamps during transfer.If set to True, the class will preserve the file's timestamps during transfer. This is applicable to both uploads and downloads. The default value is False.

**ProtocolVersion**: The highest allowable SFTP version to use.This configuration setting governs the highest allowable SFTP version to use when negotiating the version with the server. The default value is 3 because this is the most common version. The class supports values from 3 to 6. It is recommended to use the default value of 3 unless there is a specific reason a higher version is needed.

**ReadLink**: This settings returns the target of a specified symbolic link.This configuration setting returns the target of the specified symbolic link. To use the setting, pass the remote path and file name of the symbolic link. For example:

```csharp
string resolvedPath = component.Config("ReadLink=/home/test/mysymlink.txt");
```

**RealPathControlFlag**: Specifies the control-byte field sent in the SSH_FXP_REALPATH request.The RealPathControlFlag configuration setting can be used to specify the control flags sent to the SFTP server in the SSH_FXP_REALPATH request. This can be set to one of the following values:

|  |  |
| --- | --- |
| SSH_FXP_REALPATH_NO_CHECK (1) | Server should not check if the path exists. |
| SSH_FXP_REALPATH_STAT_IF (2) | Server should return the file/directory attributes if the path exists and is accessible, but should not fail otherwise. |
| SSH_FXP_REALPATH_STAT_ALWAYS (3) | Server should return the file/directory attributes if the path exists and is accessible; otherwise, it fails with an error. |

 If this configuration setting is not set, no control flags will be specified in the request and SSH_FXP_REALPATH_NO_CHECK will be assumed.

**RealTimeUpload**: Enables real time uploading.When this value is set to True, the class will upload the data in the file specified by [LocalFile](#localfile-property-sshplex-class) and continue monitoring [LocalFile](#localfile-property-sshplex-class) for additional data to upload until no new data are found for [RealTimeUploadAgeLimit](#RealTimeUploadAgeLimit) seconds. This allows you to start uploading a file immediately after the file is created and continue uploading as data is written to the file. The default value is False.

**RealTimeUploadAgeLimit**: The age limit in seconds when using RealTimeUpload.This value is applicable only when [RealTimeUpload](#RealTimeUpload) is set to True. This specifies the number of seconds for which the class will monitor [LocalFile](#localfile-property-sshplex-class) for new data to upload. If this limit is reached and no new data are found in [LocalFile](#localfile-property-sshplex-class), the upload will complete. The default value is 1.

**ServerEOL**: When TransferMode is set, this specifies the line ending for the remote system.This configuration setting is applicable only when [TransferMode](#TransferMode) is set to 1 (ASCII). The default value is a CrLf character sequence.

 When uploading or downloading, this value will be compared to [LocalEOL](#LocalEOL). If [ServerEOL](#ServerEOL) and [LocalEOL](#LocalEOL) are different, the line endings in the file being transferred will be converted to the line endings used by the destination. Line endings will be converted to the value in [LocalEOL](#LocalEOL) when downloading. Line endings will be converted to the value in [ServerEOL](#ServerEOL) when uploading. If [ServerEOL](#ServerEOL) and [LocalEOL](#LocalEOL) are the same, no conversion takes place.

The value supplied to this setting must be quoted. For example:

```text
component.Config("ServerEOL=\"" + myEOLSequence + "\"");
```

 Where myEOLSequence is a Cr, Lf, or CrLf character sequence.

Conversion will happen only when [TransferMode](#TransferMode) is set to 1 (ASCII) and [ServerEOL](#ServerEOL) and [LocalEOL](#LocalEOL) are different.

**SimultaneousTransferLimit**: The maximum number of simultaneous file transfers.This configuration setting specifies the maximum number of simultaneous file transfers. This is used when processing files added to the transfer queue by QueueFile. The default value is 5.

**TotalSpace**: The total space on the remote server in bytes.This property is populated after calling the [GetSpaceInfo](#GetSpaceInfo) configuration setting. This holds the total space on the drive on the remote server in bytes.

**TransferMode**: The transfer mode (ASCII or Binary).The value 0 represents binary and the value 1 represents ASCII. If the value is 0 (default), the initial server mode will be used.

When this value is set to 1 (ASCII) the class will use the values specified in [LocalEOL](#LocalEOL) and [ServerEOL](#ServerEOL) to convert line endings as appropriate.

NOTE: When this value is set to 1 (ASCII) and [ProtocolVersion](#ProtocolVersion) is set to 4 or higher the class will automatically determine the value for [ServerEOL](#ServerEOL) if the server supports the *newline* protocol extension.

**TransferredDataLimit**: Specifies the maximum number of bytes to download from the remote file.This configuration setting specifies the maximum number of bytes that should be downloaded from the current [RemoteFile](#remotefile-property-sshplex-class) when [Download](#download-method-sshplex-class) is called. The class will stop downloading data if it reaches the specified limit, or if there are no more data to download.

This configuration setting can be used in conjunction with the [StartByte](#startbyte-property-sshplex-class) property to download a specific range of data from the current [RemoteFile](#remotefile-property-sshplex-class).

**UseFxpStat**: Whether SSH_FXP_STAT is sent.For certain operations the class will send SSH_FXP_STAT to get a file's attributes. Some servers do not support this packet and will return an error.

Set this to *false* to not send the packet. This will cause [PreserveFileTime](#PreserveFileTime) to not work and prevent *PercentDone* in [Transfer](#transfer-event-sshplex-class) from being calculated.

The default is *true*.

### SCP Config Settings

**DirectoryPermissions**: The permissions of folders created on the remote host.This configuration setting is applicable only when [RecursiveMode](#RecursiveMode) is set to True. If new folders are created on the remote host as a result of the [Upload](#upload-method-sshplex-class) operation, this configuration setting specifies the permissions these new folders will be assigned. This is a four-digit (4-digit) octal value. See [FilePermissions](#filepermissions-property-sshplex-class) for more details on expected values. The default value is "0700".

**LastAccessedTime**: The last accessed time of the remote file.This configuration setting returns the last accessed time of the remote file. It is applicable only for download when [PreserveFileTime](#PreserveFileTime) is set to True. This may be queried within the [StartTransfer](#starttransfer-event-sshplex-class) event.

**LastModifiedTime**: The last modified time of the remote file.This configuration setting returns the last modified time of the remote file. It is applicable only for download when [PreserveFileTime](#PreserveFileTime) is set to True. This may be queried within the [StartTransfer](#starttransfer-event-sshplex-class) event.

**PreserveFileTime**: Preserves the file's modified time during transfer.If this configuration setting is set to True, the class will preserve the file's modified time during transfer. This is applicable to both uploads and downloads. The default value is True.

When enabled, the class will also populate [LastModifiedTime](#LastModifiedTime) and [LastAccessedTime](#LastAccessedTime) configuration settings. These are applicable only during download and may be used to check the times of the remote file from within the [StartTransfer](#starttransfer-event-sshplex-class) event. To cancel a transfer, call the [Interrupt](#interrupt-method-sshplex-class) method.

**RecursiveMode**: If set to true the class will recursively upload or download files.When a filemask is specified in [LocalFile](#localfile-property-sshplex-class) or [RemoteFile](#remotefile-property-sshplex-class) this configuration setting specifies if subdirectories and files are transferred as well. By default, this value is False and only files in the specified directory will be transferred. If set to True, recursion will be used to transfer all child folders and files.

**ServerResponseWindow**: The time to wait for a server response in milliseconds.After an operation is complete, the server may still return an error. This configuration setting controls the amount of time the class will wait for an error to be returned. This value is specified in milliseconds. The default value is "20".

### SShell Config Settings

**DisconnectOnChannelClose**: Whether to automatically close the connection when a channel is closed.If this is True, then any time a channel is closed the connection will close as well. When False, the connection will remain open any time a channel is closed.

Default is True.

**EncodedTerminalModes**: The terminal mode to set when communicating with the SSH host.This configuration setting may be set to specify a terminal mode when communicating with the SSH host. This will automatically be set if [TerminalModes](#TerminalModes) is set. This is provided as an alternative to [TerminalModes](#TerminalModes), as follows:

```text
class.Config("EncodedTerminalModes=" + Encoding.Default.GetString(new byte[] { 53,0,0,0,0,0 })");
```

 In this example, the first byte is the opcode (53 for echo). The next 4 bytes represent the opcode value, which is a uint 32. The last byte is always a null character to end the string. This example sets echo to off just as in the example for [TerminalModes](#TerminalModes).

**FallbackKeyboardAuth**: Whether to attempt keyboard authorization after another authorization method has failed.If this is True, then when an authentication attempt (that is not already using keyboard authentication) fails, the [SSHKeyboardInteractive](#sshkeyboardinteractive-event-sshplex-class) event will fire. The *Response* from that event will then be used in a password authentication attempt. If that attempt also fails, the [SSHKeyboardInteractive](#sshkeyboardinteractive-event-sshplex-class) event will fire one more time for an actual keyboard authentication attempt.

Default is False.

**ShellPrompt**: The character sequence of the prompt on the SSH host to wait for.If set, when [Execute](#execute-method-sshplex-class) is called, the class will wait for the *ShellPrompt* value to be returned by the server.

**StdInFile**: The file to use as Stdin data.This configuration setting provides the contents of a file as the Stdin input to the SSH server. Set this to the full path and name of the target file.

**StripANSI**: Whether to remove ANSI escape sequences.This configuration setting specifies whether the component removes ANSI escape sequences from the data returned by the server. The default value is False, and data will be provided exactly as they are returned by the server.

**TerminalHeight**: The height of the terminal display.When a connection to the SSH server is made, this option specifies the height of the terminal's display in rows.

**TerminalModes**: The terminal mode to set when communicating with the SSH host.This configuration setting may be set to specify one or more terminal modes when communicating with the Secure Shell (SSH) host. The values are passed as a comma-separated list of opcode=value pairs, as follows:

```text
class.Config("TerminalModes=53=0");
```

 In this example, 53 is the opcode (for echo) and the value is 0. So this sets echo to off.

**TerminalType**: The terminal type the class will use when connecting to a server.This specifies a terminal type when communicating with a Secure Shell (SSH) host. The default value is "vt100", additional supported terminal types will depend on the SSH host.

**TerminalUsePixel**: Whether the terminal's dimensions are in columns/rows or pixels.When this option is True, the [TerminalHeight](#TerminalHeight) and [TerminalWidth](#TerminalWidth) configuration options are in pixels instead of columns and rows. The default is False.

**TerminalWidth**: The width of the terminal display.When a connection to the SSH server is made, this option specifies the width of the terminal's display in columns.

**UpdateTerminalSize**: Used to update the terminal size.This configuration setting will send the updated terminal size to the [SSHHost](#sshhost-property-sshplex-class) when it is called. Before calling this setting, set [TerminalHeight](#TerminalHeight) and [TerminalWidth](#TerminalWidth) to the new values. Then simply call this setting, for instance:

```text
sshell.Config("UpdateTerminalSize");
```

### SExec Config Settings

**DisconnectOnChannelClose**: Whether to automatically close the connection when a channel is closed.If this is True, then any time a channel is closed, the connection will close as well. When False, the connection will remain open any time a channel is closed.

Default is False.

**EncodedTerminalModes**: The terminal mode to set when communicating with the SSH host.This configuration setting may be set to specify a terminal mode when communicating with the SSH host. This will automatically be set if [TerminalModes](#TerminalModes) is set. This is provided as an alternative to [TerminalModes](#TerminalModes), as follows:

```text
class.Config("EncodedTerminalModes=" + Encoding.Default.GetString(new byte[] { 53,0,0,0,0,0 })");
```

 In this example, the first byte is the opcode (53 for echo). The next 4 bytes represent the opcode value, which is a uint 32. The last byte is always a null character to end the string. This example sets echo to off just as in the example for [TerminalModes](#TerminalModes).

**StdInFile**: The file to use as Stdin data.This configuration setting provides the contents of a file as the Stdin input to the SSH server. Set this to the full path and name of the target file.

**TerminalHeight**: The height of the terminal display.When a connection to the SSH server is made, this option specifies the height of the terminal's display in rows.

**TerminalModes**: The terminal mode to set when communicating with the SSH host.This configuration setting may be set to specify one or more terminal modes when communicating with the Secure Shell (SSH) host. The values are passed as a comma-separated list of opcode=value pairs, as follows:

```text
class.Config("TerminalModes=53=0");
```

 In this example, 53 is the opcode (for echo) and the value is 0. So this sets echo to off.

**TerminalUsePixel**: Whether the terminal's dimensions are in columns/rows or pixels.When this option is True, the [TerminalHeight](#TerminalHeight) and [TerminalWidth](#TerminalWidth) configuration options are in pixels instead of columns and rows. The default is False.

**TerminalWidth**: The width of the terminal display.When a connection to the SSH server is made, this option specifies the width of the terminal's display in columns.

**UseTerminal**: Whether to executes commands within a pseudo-terminal.If set to *true*, the class will create a pseudo-terminal (pty-req) and will execute commands within this terminal. When [SSHLogoff](#sshlogoff-method-sshplex-class) is called, any ongoing processes will be terminated by the server. If set to *false* (default), commands are not executed within a terminal and any ongoing processes will continue to run even after [SSHLogoff](#sshlogoff-method-sshplex-class) is called.

### SSHClient Config Settings

**ChannelDataEOL[ChannelId]**: Used to break the incoming data stream into chunks.By *default* [MaxChannelDataLength](#MaxChannelDataLength) is *0* and [ChannelDataEOL](#ChannelDataEOL) is an empty string. SSHChannelData fires whenever an SSH_MSG_CHANNEL_DATA packet is received.

If [MaxChannelDataLength](#MaxChannelDataLength) is greater than *0* and [ChannelDataEOL](#ChannelDataEOL) is a nonempty string, the class will internally buffer data waiting to fire SSHChannelData until either [MaxChannelDataLength](#MaxChannelDataLength) is reached or [ChannelDataEOL](#ChannelDataEOL) is found, whichever comes first. Query [ChannelDataEOLFound](#ChannelDataEOLFound) to know which condition was met. The buffer is reset any time SSHChannelData fires.

[ChannelDataEOL](#ChannelDataEOL) and [MaxChannelDataLength](#MaxChannelDataLength) *must* be set together or unexpected behavior could occur.

**ChannelDataEOLFound[ChannelId]**: Determines if ChannelDataEOL was found.If *true*,then [ChannelDataEOL](#ChannelDataEOL) was found. If *false*, then [MaxChannelDataLength](#MaxChannelDataLength) was reached.

This configuration setting is valid only when queried inside SSHChannelData, [MaxChannelDataLength](#MaxChannelDataLength) > 0, and [ChannelDataEOL](#ChannelDataEOL) is nonempty.

**ClientSSHVersionString**: The SSH version string used by the class.This configuration setting specifies the Secure Shell (SSH) version string used by the class. The default value is "SSH-2.0-IPWorks SSH Client 2024".

Most SSH servers expect the SSH version string to have the expected format "SSH-protocol version-software version". See above for an example.

**ConnectAndLogin**: Whether the class performs a full SSH login.The default value is *true*. When enabled, calling the [Connect](#connect-method-sshplex-class) method establishes the TCP connection and performs a full SSH login.

When set to *false*, calling [Connect](#connect-method-sshplex-class) will only establish the underlying TCP connection; the SSH login will not be performed. This may be useful in cases in which it is desirable to separate the connection and logon operations; for instance, confirming a host is available before authenticating with it.

When [ConnectAndLogin](#ConnectAndLogin) is *false*, call [SSHLogon](#sshlogon-method-sshplex-class) with the same [SSHHost](#sshhost-property-sshplex-class) and [SSHPort](#sshport-property-sshplex-class) used to connect in order to complete the SSH login over the existing connection. Note that [SSHLogon](#sshlogon-method-sshplex-class) always performs a full SSH login regardless of the value of this configuration setting.

**DoNotRepeatAuthMethods**: Whether the class will repeat authentication methods during multifactor authentication.The default value is *true*. When set to *false*, the class will repeat authentication methods that have already been completed during multifactor authentication.

**EnablePageantAuth**: Whether to use a key stored in Pageant to perform client authentication.This configuration setting controls whether Pageant authentication is disabled, enabled, or required. When enabled or required, the class attempts to communicate with PuTTY's ssh-agent, called "Pageant", over shared memory to perform public key authentication. Possible values and the corresponding behavior is described as follows:

| Value | Description |
| --- | --- |
| 0 (Disabled - default) | No communication with Pageant is attempted. |
| 1 (Enabled) | Pageant authentication is used if available. If Pageant is not running, or does not contain the expected key, no error is thrown. |
| 2 (Required) | Only Pageant authentication is used. If Pageant is not running, or does not contain the expected key, an error is thrown. |

**Example 1. Enabling Pageant:**

```text
component.Config("EnablePageantAuth=1");
component.SSHUser = "sshuser";
component.SSHLogon("localhost", 22);
```

NOTE: This functionality is available only on Windows.

**KerberosDelegation**: If true, asks for credentials with delegation enabled during authentication.The default value is "True". If set to "False", the client will not ask for credentials delegation support during authentication.

NOTE: Even if the client asks for delegation, the server/KDC might not grant it, and authentication will still succeed.

**KerberosRealm**: The fully qualified domain name of the Kerberos Realm to use for GSSAPI authentication.This property may be set to the fully qualified (DNS) name of the kerberos realm (or Windows Active Directory domain name) to use during GSSAPI authentication. This can be used to force authentication with a given realm if the client and server machines are not part of the same domain.

**KerberosSPN**: The Kerberos Service Principal Name of the SSH host.This property can be set to specify the Service Principal Name (SPN) associated with the SSH service on the remote host. This will usually be in the form "host/fqdn.of.sshhost[@REALM]". If not specified, the class will assume the SPN is based on the value of the [SSHHost](#sshhost-property-sshplex-class) property and the kerberos realm used for authentication.

**KeyRenegotiationThreshold**: Sets the threshold for the SSH Key Renegotiation.This property allows you to specify the threshold, in the number of bytes, for the Secure Shell (SSH) key renegotiation. The default value for this property is set to 1 GB.

**Example. Setting the Threshold to 500 MB:**

```text
SSHComponent.Config("KeyRenegotiationThreshold=524288000")
```

**LogLevel**: Specifies the level of detail that is logged.This configuration setting controls the level of detail that is logged through the [Log](#log-event-sshplex-class) event. Possible values are as follows:

|  |  |
| --- | --- |
| 0 (None) | No messages are logged. |
| 1 (Info - Default) | Informational events such as Secure Shell (SSH) handshake messages are logged. |
| 2 (Verbose) | Detailed data such as individual packet information are logged. |
| 3 (Debug) | Debug data including all relevant sent and received bytes are logged. |

**MaxChannelDataLength[ChannelId]**: The maximum amount of data to accumulate when no ChannelDataEOL is found.By *default* [MaxChannelDataLength](#MaxChannelDataLength) is *0* and [ChannelDataEOL](#ChannelDataEOL) is an empty string. SSHChannelData fires whenever an SSH_MSG_CHANNEL_DATA packet is received.

If [MaxChannelDataLength](#MaxChannelDataLength) is greater than *0* and [ChannelDataEOL](#ChannelDataEOL) is a nonempty string, the class will internally buffer data waiting to fire SSHChannelData until either [MaxChannelDataLength](#MaxChannelDataLength) is reached or [ChannelDataEOL](#ChannelDataEOL) is found, whichever comes first. Query [ChannelDataEOLFound](#ChannelDataEOLFound) to know which condition was met. The buffer is reset any time SSHChannelData fires.

[ChannelDataEOL](#ChannelDataEOL) and [MaxChannelDataLength](#MaxChannelDataLength) *must* be set together or unexpected behavior could occur.

**MaxPacketSize**: The maximum packet size of the channel, in bytes.This configuration setting specifies the maximum size of an individual data packet, in bytes, that can be sent to the sender.

**MaxWindowSize**: The maximum window size allowed for the channel, in bytes.This configuration setting specifies how many bytes of channel data can be sent to the sender of this message without adjusting the window.

NOTE: This value may be changed during the connection, but the window size can only be increased, not decreased.

**NegotiatedStrictKex**: Returns whether strict key exchange was negotiated to be used.This configuration setting specifies whether strict key exchange (strict kex) was negotiated during the SSH handshake. If strict kex is being used, then this will return *"True"*. If strict kex is not being used, then this will return *"False"*.

```text
component.Config("NegotiatedStrictKex")
```

**PasswordPrompt**: The text of the password prompt used in keyboard-interactive authentication.This configuration setting optionally specifies a pattern to be matched to the prompt received from the server during keyboard-interactive authentication. If a matching prompt is detected the class automatically responds to the prompt with the password specified by [SSHPassword](#sshpassword-property-sshplex-class).

This provides an easy way to automatically reply to prompts with the password if one is presented by the server. The password will be autofilled in the *Response* parameter of the [SSHKeyboardInteractive](#sshkeyboardinteractive-event-sshplex-class) event in the case of a match.

The following special characters are supported for pattern matching:

|  |  |
| --- | --- |
| ? | Any single character. |
| * | Any characters or no characters (e.g., C*t matches Cat, Cot, Coast, Ct). |
| [,-] | A range of characters (e.g., [a-z], [a], [0-9], [0-9,a-d,f,r-z]). |
| \ | The slash is ignored and exact matching is performed on the next character. |

If these characters need to be used as a literal in a pattern, then they must be escaped by surrounding them with brackets []. NOTE: "]" and "-" do not need to be escaped. See below for the escape sequences:

| Character | Escape Sequence |
| --- | --- |
| ? | [?] |
| * | [*] |
| [ | [[] |
| \ | [\] |

For example, to match the value [Something].txt, specify the pattern [[]Something].txt.

**PreferredDHGroupBits**: The size (in bits) of the preferred modulus (p) to request from the server.This configuration setting may be when using the diffie-hellman-group-exchange-sha1 or diffie-hellman-group-exchange-sha256 key exchange algorithms to control the preferred size, in bits, of the modulus (p) prime number to request from the server. Acceptable values are between 1024 and 8192.

**RecordLength**: The length of received data records.If set to a positive value, this configuration setting defines the length of data records to be received. The class will accumulate data until RecordLength is reached and only then will it fire the DataIn event with data of length RecordLength. This allows data to be received as records of known length. This value can be changed at any time, including within the DataIn event.

The default value is 0, meaning this setting is not used.

**ServerSSHVersionString**: The remote host's SSH version string.This configuration setting will return the remote host's SSH version string, which can help when identifying problematic servers. This configuration setting is read-only.

**SignedSSHCert**: The CA signed client public key used when authenticating.When authenticating via public key authentication, this setting may be set to the certificate authority (CA) signed client's public key. This is useful when the server has been configured to trust client keys signed by a particular CA. For instance:

```text
component.Config("SignedSSHCert=ssh-rsa-cert-v01@openssh.com AAAAB3NzaC1yc2EAAAADAQABAAAB...");
```

 The algorithm such as *ssh-rsa-cert-v01@openssh.com* in the previous string is used as part of the authentication process. To use a different algorithm, simply change this value. For instance, all of the following are acceptable with the same signed public key:

- *ssh-rsa-cert-v01@openssh.com AAAAB3NzaC1yc2EAAAADAQABAAAB...*
- *rsa-sha2-256-cert-v01@openssh.com AAAAB3NzaC1yc2EAAAADAQABAAAB...*
- *rsa-sha2-512-cert-v01@openssh.com AAAAB3NzaC1yc2EAAAADAQABAAAB...*

**SSHAcceptAnyServerHostKey**: If set the class will accept any key presented by the server.The default value is "False". Set this to "True" to accept any key presented by the server.

**SSHAcceptServerCAKey**: The CA public key that signed the server's host key.If the server's host key was signed by a CA, this configuration setting may be used to specify the CA's public key. If specified, the class will trust any server's host key that was signed by the CA. For instance:

```text
component.Config("SSHAcceptServerCAKey=ssh-rsa AAAAB3NzaC1yc2EAAAADAQAB...");
```

**SSHAcceptServerHostKeyFingerPrint**: The fingerprint(s) of the server host keys to accept.This configuration setting specifies one or more fingerprints that should be accepted as the servers host key. Each fingerprint should be represented using the hash algorithm and encoding format defined by the [SSHFingerprintHashAlgorithm](#SSHFingerprintHashAlgorithm) and [SSHFingerprintEncoding](#SSHFingerprintEncoding) configs, respectively.

By default, this config should be specified as the comma-separated list of hex-encoded SHA256 hashes of possible server host keys.

**Example:**

```text
// Assuming default values. Hex-encoded, SHA256 hash of the expected host key
SSHClient.Config("SSHAcceptServerHostKeyFingerPrint=61:2d:89:9c:55:67:5e:ca:22:86:fc:f6:07:59:67:e0:c7:77:08:1f:cc:d9:93:f3:f9:63:21:15:3e:0c:a2:1b");

// Base64-encoded, SHA256 hash of the expected host key
SSHClient.Config("SSHFingerprintEncoding=1");
SSHClient.Config("SSHAcceptServerHostKeyFingerPrint=n4bQgYhMfWWaL+qgxVrQFaO/TxsrC4Is0V1sFbDwCgg=");
```

 If the server's fingerprint matches one of the values supplied, the class will accept the host key.

**SSHFingerprintEncoding**: Specifies the encoding used when displaying the SSH host key fingerprint.This setting determines how the SSH host key fingerprint is displayed after it has been computed using the algorithm specified by [SSHFingerprintHashAlgorithm](#SSHFingerprintHashAlgorithm). Possible values are:

- *0* (Hex Encoded)
- *1* (Base64 Encoded - Default)

For example, when set to *0*, the Fingerprint parameter in [SSHServerAuthentication](#sshserverauthentication-event-sshplex-class) will be formatted like: *0a:1b:2c:3d*. When set to *1*, the Fingerprint parameter in [SSHServerAuthentication](#sshserverauthentication-event-sshplex-class) will be formatted like:

```plaintext
n4bQgYhMfWWaL+qgxVrQFaO/TxsrC4Is0V1sFbDwCgg=
```

.

Note that this config is also applicable when querying the [SSHFingerprintMD5](#SSHFingerprintMD5), [SSHFingerprintSHA1](#SSHFingerprintSHA1), or [SSHFingerprintSHA256](#SSHFingerprintSHA256) configuration settings.

Additionally, note that this config is also applicable if specifying the host key fingerprint via [SSHAcceptServerHostKeyFingerPrint](#SSHAcceptServerHostKeyFingerPrint). The value specified via [SSHAcceptServerHostKeyFingerPrint](#SSHAcceptServerHostKeyFingerPrint) should be specified according to the format or encoding specified by this configuration setting.

**SSHFingerprintHashAlgorithm**: The algorithm used to calculate the fingerprint.This configuration setting controls which hash algorithm is used to calculate the hostkey's fingerprint, displayed when [SSHServerAuthentication](#sshserverauthentication-event-sshplex-class) fires. Valid values are as follows:

- *MD5*
- *SHA1*
- *SHA256* (default)

**SSHFingerprintMD5**: The server hostkey's MD5 fingerprint.This configuration setting may be queried in [SSHServerAuthentication](#sshserverauthentication-event-sshplex-class) to get the server hostkey's MD5 fingerprint.

**SSHFingerprintSHA1**: The server hostkey's SHA1 fingerprint.This configuration setting may be queried in [SSHServerAuthentication](#sshserverauthentication-event-sshplex-class) to get the server hostkey's SHA-1 fingerprint.

**SSHFingerprintSHA256**: The server hostkey's SHA256 fingerprint.This configuration setting may be queried in [SSHServerAuthentication](#sshserverauthentication-event-sshplex-class) to get the server hostkey's SHA-256 fingerprint.

**SSHKeepAliveCountMax**: The maximum number of keep alive packets to send without a response.This configuration setting specifies the maximum number of keep-alive packets to send when no response is received. Normally a response to a keep-alive packet is received right away. If no response is received, the class will continue to send keep-alive packets until [SSHKeepAliveCountMax](#SSHKeepAliveCountMax) is reached. If this is reached, the class will assume the connection is broken and disconnect. The default value is 5.

**SSHKeepAliveInterval**: The interval between keep alive packets.This configuration setting specifies the number of seconds between keep alive packets. If set to a positive value, the class will send a SSH keep-alive packet after [KeepAliveInterval](#KeepAliveInterval) seconds of inactivity. This configuration setting takes effect only when there is no activity; if any data are sent or received over the connection, it will reset the timer.

The default value is 0, meaning no keep alives will be sent.

NOTE: The [SSHReverseTunnel](SSHReverseTunnel.md#SSHReverseTunnel) class uses a default value of 30.

**SSHKeyExchangeAlgorithms**: Specifies the supported key exchange algorithms.This configuration setting may be used to specify the list of supported key exchange algorithms used during Secure Shell (SSH) negotiation. The value should contain a comma-separated list of algorithms. Supported algorithms are as follows:

- curve25519-sha256
- curve25519-sha256@libssh.org
- diffie-hellman-group1-sha1
- diffie-hellman-group14-sha1
- diffie-hellman-group14-sha256
- diffie-hellman-group16-sha512
- diffie-hellman-group18-sha512
- diffie-hellman-group-exchange-sha256
- diffie-hellman-group-exchange-sha1
- ecdh-sha2-nistp256
- ecdh-sha2-nistp384
- ecdh-sha2-nistp521
- gss-group14-sha256
- gss-group16-sha512
- gss-nistp256-sha256
- gss-curve25519-sha256
- gss-group14-sha1
- gss-gex-sha1
- mlkem768x25519-sha256

 The default value is *curve25519-sha256,curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,mlkem768x25519-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1,gss-group14-sha256,gss-group16-sha512,gss-nistp256-sha256,gss-curve25519-sha256,gss-group14-sha1,gss-gex-sha1*.

**SSHKeyRenegotiate**: Causes the component to renegotiate the SSH keys.Once this configuration setting is queried, the component will renegotiate the SSH keys with the remote host.

**Example 3. Renegotiating SSH Keys:**

```text
SSHClient.Config("SSHKeyRenegotiate")
```

**SSHMacAlgorithms**: Specifies the supported Mac algorithms.This configuration setting may be used to specify an alternate list of supported Mac algorithms used during SSH negotiation. This also specifies the order in which the Mac algorithms are preferred. The value should contain a comma-separated list of algorithms. Supported algorithms are as follows:

- hmac-sha1
- hmac-md5
- hmac-sha1-96
- hmac-md5-96
- hmac-sha2-256
- hmac-sha2-256-96
- hmac-sha2-512
- hmac-sha2-512-96
- hmac-ripemd160
- hmac-ripemd160-96
- hmac-sha2-256-etm@openssh.com
- hmac-sha2-512-etm@openssh.com
- hmac-sha2-256-96-etm@openssh.com
- hmac-sha2-512-96-etm@openssh.com
- umac-64@openssh.com
- umac-64-etm@openssh.com
- umac-128@openssh.com
- umac-128-etm@openssh.com

 The default value is *hmac-sha2-256,hmac-sha2-512,hmac-sha1,hmac-md5,hmac-ripemd160,hmac-sha1-96,hmac-md5-96,hmac-sha2-256-96,hmac-sha2-512-96,hmac-ripemd160-96,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,umac-64@openssh.com,umac-64-etm@openssh.com,umac-128@openssh.com,umac-128-etm@openssh.com*.

**SSHPubKeyAuthSigAlgorithms**: Specifies the enabled signature algorithms that may be used when attempting public key authentication.This setting specifies a list of signature algorithms that may be used when authenticating to the server using public key authentication. This applies only when public key authentication is performed by the client.

The setting should be a comma-separated list of algorithms. At runtime, the class will evaluate the specified algorithms, and if the algorithm is applicable to the certificate specified in [SSHCert](#sshcert-property-sshplex-class), it will be used. If the algorithm is not applicable, the class will evaluate the next algorithm. Possible values are as follows:

- ssh-rsa
- rsa-sha2-256
- rsa-sha2-512
- ssh-dss
- ecdsa-sha2-nistp256
- ecdsa-sha2-nistp384
- ecdsa-sha2-nistp521
- ssh-ed25519
- x509v3-sign-rsa
- x509v3-sign-dss

The default value in Windows is *ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,ssh-ed25519*.

**rsa-sha2-256 and rsa-sha2-512 notes**

The class will query the server for supported algorithms when connecting. If the server indicates support for *rsa-sha2-256* or *rsa-sha2-512* and the algorithm is present in the list defined by this setting (as in the default value), that algorithm will be used instead of *ssh-rsa* even when *ssh-rsa* appears first in the list.

For the *rsa-sha2-256* and *rsa-sha2-512* algorithms to be automatically preferred, the server must support the *ext-info-c* mechanism. In practice, older servers do not support this, and in that case, *ssh-rsa* will be used because it appears first in the list. Newer servers do support this mechanism, and in that case, *rsa-sha2-256* or *rsa-sha2-512* will be used even though it appears after *ssh-rsa*.

This behavior has been carefully designed to provide maximum compatibility while automatically using more secure algorithms when connecting to servers that support them.

**SSHPublicKeyAlgorithms**: Specifies the supported public key algorithms for the server's public key. This configuration setting specifies the allowed public key algorithms for the server's public key. This list controls only the public key algorithm used when authenticating the server's public key. This list has no bearing on the public key algorithms that can be used by the client when performing public key authentication to the server. The default value is *ssh-ed25519,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,rsa-sha2-256,rsa-sha2-512,ssh-rsa,ssh-dss,x509v3-sign-rsa,x509v3-sign-dss*.

**SSHVersionPattern**: The pattern used to match the remote host's version string.This configuration setting specifies the pattern used to accept or deny the remote host's SSH version string. It takes a comma-delimited list of patterns to match. The default value is "*SSH-1.99-*,*SSH-2.0-*" and will accept connections from SSH 1.99 and 2.0 hosts. As an example, the following value would accept connections for SSH 1.99, 2.0, and 2.99 hosts.

```text
*SSH-1.99-*,*SSH-2.0-*,*SSH-2.99-*
```

**TryAllAvailableAuthMethods**: If set to true, the class will try all available authentication methods.The default value is *false*. When set to *true*, the class will try to authenticate using all methods that it has credentials for and the server supports.

**UseStrictKeyExchange**: Specifies how strict key exchange is supported.This configuration setting controls whether strict key exchange (strict kex) is enabled to mitigate the Terrapin attack. When enabled, the class will indicate support for strict key exchange by automatically including the pseudo-algorithm *kex-strict-c-v00@openssh.com* for client classes and *kex-strict-s-v00@openssh.com* for server classes in the list of supported key exchange algorithms.

Because both client and server must implement strict key exchange to effectively mitigate the Terrapin attack, the class provides options to further control the behavior in different scenarios. Possible values for this setting are as follows:

|  |  |
| --- | --- |
| 0 | Disabled. Strict key exchange is not supported in the class. |
| 1 (default) | Enabled, but not enforced. This setting enables strict key exchange, but if the remote host does not support strict key exchange the connection is still allowed to continue. |
| 2 | Enabled, but will reject affected algorithms if the remote host does not support strict key exchange. If the remote host supports strict key exchange, all algorithms may be used. If the remote host does not support strict key exchange, the connection will continue only if the selected encryption and message authentication code (MAC) algorithms are not affected by the Terrapin attack. |
| 3 | Required. If the remote host does not support strict key exchange, the connection will fail. |

**WaitForChannelClose**: Whether to wait for channels to be closed before disconnected.This configuration setting controls whether the class will wait for a server response to the SSH_MSG_CHANNEL_CLOSE when disconnecting. When the class disconnects, it will first attempt to close all open channels by sending a SSH_MSG_CHANNEL_CLOSE for each channel. This configuration setting controls whether the class will wait for a server response after sending the messages.

When *True* (default), the class will wait for a response to the channel close message until the responses have been received, the server closes the connection, or [Timeout](#timeout-property-sshplex-class) seconds is reached.

When *False*, the class will still send the channel close messages, but it will not wait for a response and will proceed to close the connection.

**WaitForServerDisconnect**: Whether to wait for the server to close the connection.This configuration setting controls whether to wait for the server to close the connection when [SSHLogoff](#sshlogoff-method-sshplex-class) is called.

When set to *True*, the class will initiate the disconnection sequence by sending SSH_MSG_DISCONNECT, but it will not close the connection and instead will wait for the server to close the connection. Setting this to True may be beneficial in circumstances in which many connections are being established, to avoid port exhaustion when sockets are in a TIME_WAIT state. Allowing the server to close the connection avoids the TIME_WAIT state of socket on the client machine.

When set to *False* (default), the client will close the connection. It is recommended to use this value unless there is a specific need to change it.

### TCPClient Config Settings

**CloseStreamAfterTransfer**: If true, the component will close the upload or download stream after the transfer.This configuration setting determines whether the input or output stream is closed after the transfer completes. When set to True (default), all streams will be closed after a transfer is completed. To keep streams open after the transfer of data, set this to False. The default value is True.

**ConnectionTimeout**: Sets a separate timeout value for establishing a connection.When set, this configuration setting allows you to specify a different timeout value for establishing a connection. Otherwise, the class will use [Timeout](#timeout-property-sshplex-class) for establishing a connection and transmitting/receiving data.

**FirewallAutoDetect**: Tells the class whether or not to automatically detect and use firewall system settings, if available.This configuration setting is provided for use by classes that do not directly expose Firewall properties.

**FirewallHost**: Name or IP address of firewall (optional).If a [FirewallHost](#FirewallHost) is given, requested connections will be authenticated through the specified firewall when connecting.

If the [FirewallHost](#FirewallHost) setting is set to a Domain Name, a DNS request is initiated. Upon successful termination of the request, the [FirewallHost](#FirewallHost) setting is set to the corresponding address. If the search is not successful, an error is returned.

NOTE: This setting is provided for use by classes that do not directly expose Firewall properties.

**FirewallHTTPVersion**: The HTTP version to be used when connecting through a tunneling proxy.When [FirewallType](#FirewallType) is set to a tunneling proxy, this setting dictates which HTTP version is used when connecting.

**FirewallListener**: If true, the component binds to a SOCKS firewall as a server (TCPClient only).This entry is for TCPClient only and does not work for other components that descend from TCPClient.

If this entry is set, the class acts as a server. RemoteHost and RemotePort are used to tell the SOCKS firewall in which address and port to listen to. The firewall rules may ignore RemoteHost, and it is recommended that RemoteHost be set to empty string in this case.

RemotePort is the port in which the firewall will listen to. If set to 0, the firewall will select a random port. The binding (address and port) is provided through the [ConnectionStatus](#connectionstatus-event-sshplex-class) event.

The connection to the firewall is made by calling the [Connect](#connect-method-sshplex-class) method.

**FirewallPassword**: Password to be used if authentication is to be used when connecting through the firewall.If [FirewallHost](#FirewallHost) is specified, the [FirewallUser](#FirewallUser) and [FirewallPassword](#FirewallPassword) settings are used to connect and authenticate to the given firewall. If the authentication fails, the class throws an exception.

NOTE: This setting is provided for use by classes that do not directly expose Firewall properties.

**FirewallPort**: The TCP port for the FirewallHost;.The [FirewallPort](#FirewallPort) is set automatically when [FirewallType](#FirewallType) is set to a valid value.

NOTE: This configuration setting is provided for use by classes that do not directly expose Firewall properties.

**FirewallType**: Determines the type of firewall to connect through.Possible values are as follows:

|  |  |
| --- | --- |
| 0 | No firewall (default setting). |
| 1 | Connect through a tunneling proxy. [FirewallPort](#FirewallPort) is set to 80. |
| 2 | Connect through a SOCKS4 Proxy. [FirewallPort](#FirewallPort) is set to 1080. |
| 3 | Connect through a SOCKS5 Proxy. [FirewallPort](#FirewallPort) is set to 1080. |
| 10 | Connect through a SOCKS4A Proxy. [FirewallPort](#FirewallPort) is set to 1080. |

NOTE: This setting is provided for use by classes that do not directly expose Firewall properties.

**FirewallUser**: A user name if authentication is to be used connecting through a firewall.If the [FirewallHost](#FirewallHost) is specified, the [FirewallUser](#FirewallUser) and [FirewallPassword](#FirewallPassword) settings are used to connect and authenticate to the Firewall. If the authentication fails, the class throws an exception.

NOTE: This setting is provided for use by classes that do not directly expose Firewall properties.

**KeepAliveInterval**: The retry interval, in milliseconds, to be used when a TCP keep-alive packet is sent and no response is received.When set, [TCPKeepAlive](#TCPKeepAlive) will automatically be set to True. A TCP keep-alive packet will be sent after a period of inactivity as defined by [KeepAliveTime](#KeepAliveTime). If no acknowledgment is received from the remote host, the keep-alive packet will be sent again. This configuration setting specifies the interval at which the successive keep-alive packets are sent in milliseconds. This system default if this value is not specified here is 1 second.

NOTE: This value is not applicable in macOS.

**KeepAliveTime**: The inactivity time in milliseconds before a TCP keep-alive packet is sent.When set, [TCPKeepAlive](#TCPKeepAlive) will automatically be set to True. By default, the operating system will determine the time a connection is idle before a Transmission Control Protocol (TCP) keep-alive packet is sent. This system default if this value is not specified here is 2 hours. In many cases, a shorter interval is more useful. Set this value to the desired interval in milliseconds.

**Linger**: When set to True, connections are terminated gracefully.This property controls how a connection is closed. The default is True.

In the case that Linger is True (default), two scenarios determine how long the connection will linger. In the first, if [LingerTime](#LingerTime) is 0 (default), the system will attempt to send pending data for a connection until the default IP timeout expires.

In the second scenario, if [LingerTime](#LingerTime) is a positive value, the system will attempt to send pending data until the specified [LingerTime](#LingerTime) is reached. If this attempt fails, then the system will reset the connection.

The default behavior (which is also the default mode for stream sockets) might result in a long delay in closing the connection. Although the class returns control immediately, the system could hold system resources until all pending data are sent (even after your application closes).

Setting this property to False forces an immediate disconnection. If you know that the other side has received all the data you sent (e.g., by a client acknowledgment), setting this property to False might be the appropriate course of action.

**LingerTime**: Time in seconds to have the connection linger. LingerTime is the time, in seconds, the socket connection will linger. This value is 0 by default, which means it will use the default IP timeout.

**LocalHost**: The name of the local host through which connections are initiated or accepted. The [LocalHost](#localhost-property-sshplex-class) setting contains the name of the local host as obtained by the *gethostname()* system call, or if the user has assigned an IP address, the value of that address.

In multihomed hosts (machines with more than one IP interface), setting LocalHost to the value of an interface will make the class initiate connections (or accept in the case of server classes) only through that interface.

If the class is connected, the [LocalHost](#localhost-property-sshplex-class) setting shows the IP address of the interface through which the connection is made in internet dotted format (aaa.bbb.ccc.ddd). In most cases, this is the address of the local host, except for multihomed hosts (machines with more than one IP interface).

**LocalPort**: The port in the local host where the class binds. This configuration setting must be set before a connection is attempted. It instructs the class to bind to a specific port (or communication endpoint) in the local machine.

Setting this to 0 (default) enables the system to choose a port at random. The chosen port will be shown by [LocalPort](#localport-property-sshplex-class) after the connection is established.

[LocalPort](#localport-property-sshplex-class) cannot be changed once a connection is made. Any attempt to set this when a connection is active will generate an error.

This configuration setting is useful when trying to connect to services that require a trusted port on the client side. An example is the remote shell (rsh) service in UNIX systems.

**MaxLineLength**: The maximum amount of data to accumulate when no EOL is found.[MaxLineLength](#MaxLineLength) is the size of an internal buffer, which holds received data while waiting for an EOL string.

If an EOL string is found in the input stream before [MaxLineLength](#MaxLineLength) bytes are received, the DataIn event is fired with the *EOL* parameter set to True, and the buffer is reset.

If no EOL is found, and [MaxLineLength](#MaxLineLength) bytes are accumulated in the buffer, the DataIn event is fired with the *EOL* parameter set to False, and the buffer is reset.

The minimum value for [MaxLineLength](#MaxLineLength) is 256 bytes. The default value is 2048 bytes.

**MaxTransferRate**: The transfer rate limit in bytes per second.This configuration setting can be used to throttle outbound TCP traffic. Set this to the number of bytes to be sent per second. By default, this is not set and there is no limit.

**ProxyExceptionsList**: A semicolon separated list of hosts and IPs to bypass when using a proxy.This configuration setting optionally specifies a semicolon-separated list of hostnames or IP addresses to bypass when a proxy is in use. When requests are made to hosts specified in this property, the proxy will not be used. For instance:

*www.google.com;www.example.com*

**TCPKeepAlive**: Determines whether or not the keep alive socket option is enabled.If set to True, the socket's keep-alive option is enabled and keep-alive packets will be sent periodically to maintain the connection. Set [KeepAliveTime](#KeepAliveTime) and [KeepAliveInterval](#KeepAliveInterval) to configure the timing of the keep-alive packets.

NOTE: This value is not applicable in Java.

**TcpNoDelay**: Whether or not to delay when sending packets. When set to True, the socket will send all data that are ready to send at once. When set to False, the socket will send smaller buffered packets of data at small intervals. This is known as the Nagle algorithm.

By default, this configuration setting is set to False.

**UseIPv6**: Whether to use IPv6.When set to *0* (default), the class will use IPv4 exclusively. When set to *1*, the class will use IPv6 exclusively. To instruct the class to prefer IPv6 addresses, but use IPv4 if IPv6 is not supported on the system, this setting should be set to *2*. The default value is *0*. Possible values are as follows:

|  |  |
| --- | --- |
| 0 | IPv4 only |
| 1 | IPv6 only |
| 2 | IPv6 with IPv4 fallback |

**UseNTLMv2**: Whether to use NTLM V2.When authenticating with NTLM, this setting specifies whether NTLM V2 is used. By default this value is True and NTLM V2 will be used. Set this to False to use NTLM V1.

### Socket Config Settings

**AbsoluteTimeout**: Determines whether timeouts are inactivity timeouts or absolute timeouts.If [AbsoluteTimeout](#AbsoluteTimeout) is set to True, any method that does not complete within [Timeout](#timeout-property-sshplex-class) seconds will be aborted. By default, *AbsoluteTimeout* is False, and the timeout is an inactivity timeout.

NOTE: This option is not valid for User Datagram Protocol (UDP) ports.

**FirewallData**: Used to send extra data to the firewall.When the firewall is a tunneling proxy, use this property to send custom (additional) headers to the firewall (e.g., headers for custom authentication schemes).

**InBufferSize**: The size in bytes of the incoming queue of the socket.This is the size of an internal queue in the Transmission Control Protocol (TCP)/IP stack. You can increase or decrease its size depending on the amount of data that you will be receiving. In some cases, increasing the value of the *InBufferSize* setting can provide significant improvements in performance.

Some TCP/IP implementations do not support variable buffer sizes. If that is the case, when the class is activated the *InBufferSize* reverts to its defined size. The same happens if you attempt to make it too large or too small.

**OutBufferSize**: The size in bytes of the outgoing queue of the socket.This is the size of an internal queue in the TCP/IP stack. You can increase or decrease its size depending on the amount of data that you will be sending. In some cases, increasing the value of the *OutBufferSize* setting can provide significant improvements in performance.

Some TCP/IP implementations do not support variable buffer sizes. If that is the case, when the class is activated the *OutBufferSize* reverts to its defined size. The same happens if you attempt to make it too large or too small.

### Base Config Settings

**BuildInfo**: Information about the product's build.When queried, this setting will return a string containing information about the product's build.

**GUIAvailable**: Whether or not a message loop is available for processing events.In a GUI-based application, long-running blocking operations may cause the application to stop responding to input until the operation returns. The class will attempt to discover whether or not the application has a message loop and, if one is discovered, it will process events in that message loop during any such blocking operation.

In some non-GUI applications, an invalid message loop may be discovered that will result in errant behavior. In these cases, setting [GUIAvailable](#GUIAvailable) to *false* will ensure that the class does not attempt to process external events.

**LicenseInfo**: Information about the current license.When queried, this setting will return a string containing information about the license this instance of a class is using. It will return the following information:

- Product: The product the license is for.
- Product Key: The key the license was generated from.
- License Source: Where the license was found (e.g., RuntimeLicense, License File).
- License Type: The type of license installed (e.g., Royalty Free, Single Server).
- Last Valid Build: The last valid build number for which the license will work.

**MaskSensitiveData**: Whether sensitive data is masked in log messages.In certain circumstances it may be beneficial to mask sensitive data, like passwords, in log messages. Set this to *true* to mask sensitive data. The default is *true*.

**UseDaemonThreads**: Whether threads created by the class are daemon threads.If set to True (default), when the class creates a thread, the thread's Daemon property will be explicitly set to True. When set to False, the class will not set the Daemon property on the created thread. The default value is True.

**UseFIPSCompliantAPI**: Tells the class whether or not to use FIPS certified APIs.When set to *true*, the class will utilize the underlying operating system's certified APIs. Java editions, regardless of OS, utilize Bouncy Castle Federal Information Processing Standards (FIPS), while all other Windows editions make use of Microsoft security libraries.

The Java edition requires installation of the FIPS-certified Bouncy Castle library regardless of the target operating system. This can be downloaded from [https://www.bouncycastle.org/fips-java/](https://www.bouncycastle.org/fips-java/). Only the "Provider" library is needed. The jar file should then be installed in a JRE search path.

The following classes must be imported in the application in which the component will be used:

```text
import java.security.Security;
import org.bouncycastle.jcajce.provider.BouncyCastleFipsProvider;
```

The Bouncy Castle provider must be added as a valid provider and must also be configured to operate in FIPS mode:

```text
System.setProperty("org.bouncycastle.fips.approved_only","true");
Security.addProvider(new BouncyCastleFipsProvider());
```

When [UseFIPSCompliantAPI](#UseFIPSCompliantAPI) is *true*, Secure Sockets Layer (SSL)-enabled classes can optionally be configured to use the Transport Layer Security (TLS) Bouncy Castle library. When SSLProvider is set to *sslpAutomatic* (default) or *sslpInternal*, an internal TLS implementation is used, but all cryptographic operations are offloaded to the Bouncy Castle FIPS provider to achieve FIPS-compliant operation. If SSLProvider is set to *sslpPlatform*, the Bouncy Castle JSSE will be used in place of the internal TLS implementation.

To enable the use of the Bouncy Castle JSSE take the following steps in addition to the steps above. Both the Bouncy Castle FIPS provider and the Bouncy Castle JSSE must be configured to use the Bouncy Castle TLS library in FIPS mode. Obtain the Bouncy Castle TLS library from [https://www.bouncycastle.org/fips-java/](https://www.bouncycastle.org/fips-java/). The jar file should then be installed in a JRE search path.

The following classes must be imported in the application in which the component will be used:

```text
import java.security.Security;
import org.bouncycastle.jcajce.provider.BouncyCastleFipsProvider;

//required to use BCJSSE when SSLProvider is set to sslpPlatform
import org.bouncycastle.jsse.provider.BouncyCastleJsseProvider;
```

The Bouncy Castle provider must be added as a valid provider and also must be configured to operate in FIPS mode:

```text
System.setProperty("org.bouncycastle.fips.approved_only","true");
Security.addProvider(new BouncyCastleFipsProvider());

//required to use BCJSSE when SSLProvider is set to sslpPlatform
Security.addProvider(new BouncyCastleJsseProvider("fips:BCFIPS"));

//optional - configure logging level of BCJSSE
Logger.getLogger("org.bouncycastle.jsse").setLevel(java.util.logging.Level.OFF);

//configure the class to use BCJSSE
component.setSSLProvider(1); //platform
component.config("UseFIPSCompliantAPI=true");
```

 NOTE: TLS 1.3 support requires the Bouncy Castle TLS library version 1.0.14 or later.

FIPS mode can be enabled by setting the *UseFIPSCompliantAPI* configuration setting to *true*. This is a static setting that applies to all instances of all classes of the toolkit within the process. It is recommended to enable or disable this setting once before the component has been used to establish a connection. Enabling FIPS while an instance of the component is active and connected may result in unexpected behavior.

For more details, please see the [FIPS 140-2 Compliance](https://www.nsoftware.com/kb/articles/fips.rst) article.

NOTE: Enabling FIPS compliance requires a special license; please contact [sales@nsoftware.com](mailto:sales@nsoftware.com) for details.

**UseInternalSecurityAPI**: Whether or not to use the system security libraries or an internal implementation. When set to *false*, the class will use the system security libraries by default to perform cryptographic functions where applicable.

Setting this configuration setting to *true* tells the class to use the internal implementation instead of using the system security libraries.

 This setting is set to *false* by default on all platforms.

**UseVirtualThreads**: Whether threads created by the class use virtual threads instead of platform threads.If set to *true*, when the class creates a thread, it will be created as a virtual thread instead of a platform thread. Virtual threads are lightweight threads managed by the JVM that are multiplexed onto a small pool of carrier threads, significantly reducing memory usage and platform thread count under high-concurrency workloads. Requires Java 24 or later. The default value is *false*.

# Trappable Errors ([SSHPlex](#sshplex-class) Class)

### SSHPlex Errors

|  |  |
| --- | --- |
| 1039 | Invalid channel type. |
| 1040 | Operation has been canceled. |

### SFTPClient Errors

|  |  |
| --- | --- |
| 118 | Firewall error. Error description contains detailed information. |
| 1102 | The server's SFTP draft version is unsupported. |
| 1103 | SFTP command failed. Error description contains detailed information. |
| 1104 | Server does not support renaming. |
| 1105 | Received invalid response from server. Error description contains detailed information. |
| 1106 | Cannot resolve path: path does not exist. |
| 1107 | You must set [LocalFile](#localfile-property-sshplex-class)/[RemoteFile](#remotefile-property-sshplex-class) before attempting to download/upload. |
| 1108 | Cannot download file: [LocalFile](#localfile-property-sshplex-class) exists and [Overwrite](#overwrite-property-sshplex-class) is set to False. |
| 1109 | [CheckFileHash](#CheckFileHash) failed because of hash value mismatch. |

### SCP Errors

|  |  |
| --- | --- |
| 118 | Firewall error. Error description contains detailed information. |

### SExec Errors

|  |  |
| --- | --- |
| 1050 | Busy performing other action. |

### SShell Errors

|  |  |
| --- | --- |
| 1050 | Busy performing another action. |

### SSHClient Errors

|  |  |
| --- | --- |
| 1001 | Server has disconnected. |
| 1002 | Protocol version unsupported or other issue with version string. |
| 1003 | Cannot negotiate algorithms. |
| 1005 | Selected algorithm unsupported. |
| 1006 | Cannot set keys. |
| 1010 | Unexpected algorithm. |
| 1011 | Cannot create exchange hash. |
| 1012 | Cannot make key. |
| 1013 | Cannot sign data. |
| 1014 | Cannot encrypt packet. |
| 1015 | Cannot decrypt packet. |
| 1016 | Cannot decompress packet. |
| 1020 | Failure to open channel. |
| 1021 | Invalid channel Id. |
| 1022 | Invalid channel data. |
| 1023 | Invalid channel message. |
| 1024 | SSH message unimplemented. |
| 1027 | Server message unsupported. |
| 1030 | Server's host key was rejected. The host key may be accepted within the [SSHServerAuthentication](#sshserverauthentication-event-sshplex-class) event or using the [SSHAcceptServerHostKey](#sshacceptserverhostkey-property-sshplex-class) property. |
| 1031 | Cannot verify server's host key. |
| 1032 | Authentication failed. Check description for details. |
| 1033 | Channel request failed. |
| 1034 | Diffie-Hellman exchange failed. |
| 1036 | SSH connection failed. |
| 1037 | SSH reconnect limit reached. |
| 1038 | Elliptic curve Diffie-Hellman exchange failed. |
| 1039 | SSH keep-alive limit reached. |
| 1098 | Request failure. |
| 1130 | Would block error. |
| 1133 | Would block, reason: key reExchange. |

### TCPClient Errors

|  |  |
| --- | --- |
| 100 | You cannot change the RemotePort at this time. A connection is in progress. |
| 101 | You cannot change the RemoteHost (Server) at this time. A connection is in progress. |
| 102 | The RemoteHost address is invalid (0.0.0.0). |
| 104 | Already connected. If you want to reconnect, close the current connection first. |
| 106 | You cannot change the [LocalPort](#localport-property-sshplex-class) at this time. A connection is in progress. |
| 107 | You cannot change the [LocalHost](#localhost-property-sshplex-class) at this time. A connection is in progress. |
| 112 | You cannot change [MaxLineLength](#MaxLineLength) at this time. A connection is in progress. |
| 116 | RemotePort cannot be zero. Please specify a valid service port number. |
| 117 | You cannot change the UseConnection option while the class is active. |
| 135 | Operation would block. |
| 201 | Timeout. |
| 211 | Action impossible in control's present state. |
| 212 | Action impossible while not connected. |
| 213 | Action impossible while listening. |
| 301 | Timeout. |
| 303 | Could not open file. |
| 434 | Unable to convert string to selected CodePage. |
| 1105 | Already connecting. If you want to reconnect, close the current connection first. |
| 1117 | You need to connect first. |
| 1119 | You cannot change the LocalHost at this time. A connection is in progress. |
| 1120 | Connection dropped by remote host. |

### TCP/IP Errors

|  |  |
| --- | --- |
| 10004 | [10004] Interrupted system call. |
| 10009 | [10009] Bad file number. |
| 10013 | [10013] Access denied. |
| 10014 | [10014] Bad address. |
| 10022 | [10022] Invalid argument. |
| 10024 | [10024] Too many open files. |
| 10035 | [10035] Operation would block. |
| 10036 | [10036] Operation now in progress. |
| 10037 | [10037] Operation already in progress. |
| 10038 | [10038] Socket operation on nonsocket. |
| 10039 | [10039] Destination address required. |
| 10040 | [10040] Message is too long. |
| 10041 | [10041] Protocol wrong type for socket. |
| 10042 | [10042] Bad protocol option. |
| 10043 | [10043] Protocol is not supported. |
| 10044 | [10044] Socket type is not supported. |
| 10045 | [10045] Operation is not supported on socket. |
| 10046 | [10046] Protocol family is not supported. |
| 10047 | [10047] Address family is not supported by protocol family. |
| 10048 | [10048] Address already in use. |
| 10049 | [10049] Cannot assign requested address. |
| 10050 | [10050] Network is down. |
| 10051 | [10051] Network is unreachable. |
| 10052 | [10052] Net dropped connection or reset. |
| 10053 | [10053] Software caused connection abort. |
| 10054 | [10054] Connection reset by peer. |
| 10055 | [10055] No buffer space available. |
| 10056 | [10056] Socket is already connected. |
| 10057 | [10057] Socket is not connected. |
| 10058 | [10058] Cannot send after socket shutdown. |
| 10059 | [10059] Too many references, cannot splice. |
| 10060 | [10060] Connection timed out. |
| 10061 | [10061] Connection refused. |
| 10062 | [10062] Too many levels of symbolic links. |
| 10063 | [10063] File name is too long. |
| 10064 | [10064] Host is down. |
| 10065 | [10065] No route to host. |
| 10066 | [10066] Directory is not empty |
| 10067 | [10067] Too many processes. |
| 10068 | [10068] Too many users. |
| 10069 | [10069] Disc Quota Exceeded. |
| 10070 | [10070] Stale NFS file handle. |
| 10071 | [10071] Too many levels of remote in path. |
| 10091 | [10091] Network subsystem is unavailable. |
| 10092 | [10092] WINSOCK DLL Version out of range. |
| 10093 | [10093] Winsock is not loaded yet. |
| 11001 | [11001] Host not found. |
| 11002 | [11002] Nonauthoritative 'Host not found' (try again or check DNS setup). |
| 11003 | [11003] Nonrecoverable errors: FORMERR, REFUSED, NOTIMP. |
| 11004 | [11004] Valid name, no data record (check DNS setup). |
