# SSHServer Class

The SSHServer class is used to create Secure Shell (SSH) servers. The class handles multiple simultaneous connections on the same Transmission Control Protocol (TCP)/IP port (service port). It is designed to balance the load between connections for a fast, powerful server.

## Class Name

**IPWorksSSH_SSHServer**

## Procedural Interface

```text
 ipworksssh_sshserver_open();
 ipworksssh_sshserver_close($res);
 ipworksssh_sshserver_register_callback($res, $id, $function);
 ipworksssh_sshserver_get_last_error($res);
 ipworksssh_sshserver_get_last_error_code($res);
 ipworksssh_sshserver_set($res, $id, $index, $value);
 ipworksssh_sshserver_get($res, $id, $index);
 ipworksssh_sshserver_do_changerecordlength($res, $channelid, $recordlength);
 ipworksssh_sshserver_do_closechannel($res, $channelid);
 ipworksssh_sshserver_do_config($res, $configurationstring);
 ipworksssh_sshserver_do_disconnect($res, $connectionid);
 ipworksssh_sshserver_do_doevents($res);
 ipworksssh_sshserver_do_exchangekeys($res, $connectionid);
 ipworksssh_sshserver_do_getsshparam($res, $payload, $field);
 ipworksssh_sshserver_do_getsshparambytes($res, $payload, $field);
 ipworksssh_sshserver_do_openchannel($res, $connectionid, $channeltype);
 ipworksssh_sshserver_do_reset($res);
 ipworksssh_sshserver_do_sendbytes($res, $channelid, $data);
 ipworksssh_sshserver_do_sendchanneldata($res, $channelid, $data);
 ipworksssh_sshserver_do_sendsshpacket($res, $channelid, $packettype, $payload);
 ipworksssh_sshserver_do_sendtext($res, $channelid, $text);
 ipworksssh_sshserver_do_setsshparam($res, $payload, $fieldtype, $fieldvalue);
 ipworksssh_sshserver_do_shutdown($res);
 ipworksssh_sshserver_do_startlistening($res);
 ipworksssh_sshserver_do_stoplistening($res);
```

## Remarks

The SSHServer class is the Secure Shell (SSH)-enabled equivalent of the IPWorks TCPServer class, extended by a set of new properties and events that deal with SSH security. The [SSHCompressionAlgorithms](#sshcompressionalgorithms-property-ipworksssh_sshserver-class) and [SSHEncryptionAlgorithms](#sshencryptionalgorithms-property-ipworksssh_sshserver-class) properties determine which protocols are enabled for the SSH handshake. The SSHCert* properties are used to select a certificate for the server (note that a valid certificate **must** be selected before the server can function). The [SSHUserAuthRequest](#sshuserauthrequest-event-ipworksssh_sshserver-class) event will allow you to use authenticate clients using digital certificates or passwords. Finally, the [SSHStatus](#sshstatus-event-ipworksssh_sshserver-class) event provides information about the SSH handshake and underlying protocol notifications.

By default, each instance of SSHServer can handle up to 1000 simultaneous incoming connections (this number may be increased up to 100,000, or decreased to a lower value by using the [MaxConnections](#MaxConnections) configuration setting).

SSH connections are identified by a *ConnectionId*. Events relating to these connections as a whole will use the *ConnectionId* to identify the specific connection. Connections may also contain one or more multiplexed channels, which are identified by a *ChannelId*. Channel-level events will specify the *ChannelId* to which they relate.

SSHServer can start to listen on a port by setting the [Listening](#listening-property-ipworksssh_sshserver-class) property to True. When a remote host asks for a connection, the [ConnectionRequest](#connectionrequest-event-ipworksssh_sshserver-class) event is fired. At that point, the connection can either be accepted or rejected. If the connection is accepted, a *ConnectionId* is assigned, and communication can start. From this point on, the operation is similar to SSHClient. Data can be sent to an individual SSHChannel using [SendChannelData](#sendchanneldata-method-ipworksssh_sshserver-class). The address and port of the incoming connection can be found by querying the [ClientRemoteHost](#SSHServer_p_ClientRemoteHost) and [ClientRemotePort](#SSHServer_p_ClientRemotePort) properties.

NOTE: Server components are designed to process events as they occur. To ensure that events are processed in a timely manner, [DoEvents](#doevents-method-ipworksssh_sshserver-class) should be called in a loop after the server is started.

## Property List

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

|  |  |
| --- | --- |
| [SSHChannelCount](#sshchannelcount-property-ipworksssh_sshserver-class) | The number of records in the arrays. |
| [BytesSent](#bytessent-property-ipworksssh_sshserver-class) | This property specifies the number of bytes actually sent after a sending channel data. |
| [ChannelEOL](#channeleol-property-ipworksssh_sshserver-class) | Breaks the incoming data stream into chunks separated by EOL . |
| [ChannelId](#channelid-property-ipworksssh_sshserver-class) | This property provides an Id generated by the class to identify the current Secure Shell (SSH) channel. |
| [MaxChannelLength](#maxchannellength-property-ipworksssh_sshserver-class) | This property specifies the maximum amount of data to accumulate when no EOL is found. |
| [ReadyToSend](#readytosend-property-ipworksssh_sshserver-class) | This property is True when data can be sent over the Secure Shell (SSH) channel. |
| [RecordLength](#recordlength-property-ipworksssh_sshserver-class) | This property holds the current record length set by ChangeRecordLength . |
| [Service](#service-property-ipworksssh_sshserver-class) | This property holds the channel type that was requested when opening the channel. |
| [ConnectionBacklog](#connectionbacklog-property-ipworksssh_sshserver-class) | This property includes the maximum number of pending connections maintained by the Transmission Control Protocol (TCP)/IP subsystem. |
| [SSHConnectionCount](#sshconnectioncount-property-ipworksssh_sshserver-class) | The number of records in the SSHConnection arrays. |
| [SSHConnectionConnected](#sshconnectionconnected-property-ipworksssh_sshserver-class) | This property indicates the status of individual connections. |
| [SSHConnectionLocalAddress](#sshconnectionlocaladdress-property-ipworksssh_sshserver-class) | This property shows the IP address of the interface through which the connection is passing. |
| [SSHConnectionRemoteHost](#sshconnectionremotehost-property-ipworksssh_sshserver-class) | The RemoteHost shows the IP address of the remote host through which the connection is coming. |
| [SSHConnectionRemotePort](#sshconnectionremoteport-property-ipworksssh_sshserver-class) | The RemotePort shows the Transmission Control Protocol (TCP) port on the remote host through which the connection is coming. |
| [SSHConnectionTimeout](#sshconnectiontimeout-property-ipworksssh_sshserver-class) | This property contains a timeout for the class. |
| [DefaultAuthMethods](#defaultauthmethods-property-ipworksssh_sshserver-class) | The supported authentication methods. |
| [DefaultIdleTimeout](#defaultidletimeout-property-ipworksssh_sshserver-class) | This property includes the default idle timeout for inactive clients. |
| [DefaultTimeout](#defaulttimeout-property-ipworksssh_sshserver-class) | The initial timeout value to be used by incoming connections. |
| [KeyboardInteractiveMessage](#keyboardinteractivemessage-property-ipworksssh_sshserver-class) | The instructions to send to the client during keyboard-interactive authentication. |
| [KeyboardInteractivePromptCount](#keyboardinteractivepromptcount-property-ipworksssh_sshserver-class) | The number of records in the KeyboardInteractivePrompt arrays. |
| [KeyboardInteractivePromptEcho](#keyboardinteractivepromptecho-property-ipworksssh_sshserver-class) | This property specifies whether or not the client should echo the value entered by the user. |
| [KeyboardInteractivePromptPrompt](#keyboardinteractivepromptprompt-property-ipworksssh_sshserver-class) | This property contains the prompt label or text the client should present to the user. |
| [Listening](#listening-property-ipworksssh_sshserver-class) | This property indicates whether the class is listening for incoming connections on LocalPort. |
| [LocalHost](#localhost-property-ipworksssh_sshserver-class) | The name of the local host or user-assigned IP interface through which connections are initiated or accepted. |
| [LocalPort](#localport-property-ipworksssh_sshserver-class) | The Transmission Control Protocol (TCP) port in the local host where the class listens. |
| [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) | The number of records in the SSHCert arrays. |
| [SSHCertEffectiveDate](#sshcerteffectivedate-property-ipworksssh_sshserver-class) | The date on which this certificate becomes valid. |
| [SSHCertExpirationDate](#sshcertexpirationdate-property-ipworksssh_sshserver-class) | The date on which the certificate expires. |
| [SSHCertExtendedKeyUsage](#sshcertextendedkeyusage-property-ipworksssh_sshserver-class) | A comma-delimited list of extended key usage identifiers. |
| [SSHCertFingerprint](#sshcertfingerprint-property-ipworksssh_sshserver-class) | The hex-encoded, 16-byte MD5 fingerprint of the certificate. |
| [SSHCertFingerprintSHA1](#sshcertfingerprintsha1-property-ipworksssh_sshserver-class) | The hex-encoded, 20-byte SHA-1 fingerprint of the certificate. |
| [SSHCertFingerprintSHA256](#sshcertfingerprintsha256-property-ipworksssh_sshserver-class) | The hex-encoded, 32-byte SHA-256 fingerprint of the certificate. |
| [SSHCertIssuer](#sshcertissuer-property-ipworksssh_sshserver-class) | The issuer of the certificate. |
| [SSHCertPrivateKey](#sshcertprivatekey-property-ipworksssh_sshserver-class) | The private key of the certificate (if available). |
| [SSHCertPrivateKeyAvailable](#sshcertprivatekeyavailable-property-ipworksssh_sshserver-class) | Whether a PrivateKey is available for the selected certificate. |
| [SSHCertPrivateKeyContainer](#sshcertprivatekeycontainer-property-ipworksssh_sshserver-class) | The name of the PrivateKey container for the certificate (if available). |
| [SSHCertPublicKey](#sshcertpublickey-property-ipworksssh_sshserver-class) | The public key of the certificate. |
| [SSHCertPublicKeyAlgorithm](#sshcertpublickeyalgorithm-property-ipworksssh_sshserver-class) | The textual description of the certificate's public key algorithm. |
| [SSHCertPublicKeyLength](#sshcertpublickeylength-property-ipworksssh_sshserver-class) | The length of the certificate's public key (in bits). |
| [SSHCertSerialNumber](#sshcertserialnumber-property-ipworksssh_sshserver-class) | The serial number of the certificate encoded as a string. |
| [SSHCertSignatureAlgorithm](#sshcertsignaturealgorithm-property-ipworksssh_sshserver-class) | The text description of the certificate's signature algorithm. |
| [SSHCertStore](#sshcertstore-property-ipworksssh_sshserver-class) | The name of the certificate store for the client certificate. |
| [SSHCertStorePassword](#sshcertstorepassword-property-ipworksssh_sshserver-class) | If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store. |
| [SSHCertStoreType](#sshcertstoretype-property-ipworksssh_sshserver-class) | The type of certificate store for this certificate. |
| [SSHCertSubjectAltNames](#sshcertsubjectaltnames-property-ipworksssh_sshserver-class) | Comma-separated lists of alternative subject names for the certificate. |
| [SSHCertThumbprintMD5](#sshcertthumbprintmd5-property-ipworksssh_sshserver-class) | The MD5 hash of the certificate. |
| [SSHCertThumbprintSHA1](#sshcertthumbprintsha1-property-ipworksssh_sshserver-class) | The SHA-1 hash of the certificate. |
| [SSHCertThumbprintSHA256](#sshcertthumbprintsha256-property-ipworksssh_sshserver-class) | The SHA-256 hash of the certificate. |
| [SSHCertUsage](#sshcertusage-property-ipworksssh_sshserver-class) | The text description of UsageFlags . |
| [SSHCertUsageFlags](#sshcertusageflags-property-ipworksssh_sshserver-class) | The flags that show intended use for the certificate. |
| [SSHCertVersion](#sshcertversion-property-ipworksssh_sshserver-class) | The certificate's version number. |
| [SSHCertSubject](#sshcertsubject-property-ipworksssh_sshserver-class) | The subject of the certificate used for client authentication. |
| [SSHCertEncoded](#sshcertencoded-property-ipworksssh_sshserver-class) | The certificate (PEM/Base64 encoded). |
| [SSHCompressionAlgorithms](#sshcompressionalgorithms-property-ipworksssh_sshserver-class) | The comma-separated list containing all allowable compression algorithms. |
| [SSHEncryptionAlgorithms](#sshencryptionalgorithms-property-ipworksssh_sshserver-class) | The comma-separated list containing all allowable encryption algorithms. |

## Method List

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

|  |  |
| --- | --- |
| [ChangeRecordLength](#changerecordlength-method-ipworksssh_sshserver-class) | Changes the length of received data records. |
| [CloseChannel](#closechannel-method-ipworksssh_sshserver-class) | Closes an existing SSHChannel . |
| [Config](#config-method-ipworksssh_sshserver-class) | Sets or retrieves a configuration setting. |
| [Disconnect](#disconnect-method-ipworksssh_sshserver-class) | This method disconnects the specified client. |
| [DoEvents](#doevents-method-ipworksssh_sshserver-class) | This method processes events from the internal message queue. |
| [ExchangeKeys](#exchangekeys-method-ipworksssh_sshserver-class) | Causes the class to exchange a new set of session keys on the specified connection. |
| [GetSSHParam](#getsshparam-method-ipworksssh_sshserver-class) | Reads a field from a Secure Shell (SSH) packet's payload. |
| [GetSSHParamBytes](#getsshparambytes-method-ipworksssh_sshserver-class) | Reads a field from a Secure Shell (SSH) packet's payload. |
| [OpenChannel](#openchannel-method-ipworksssh_sshserver-class) | Opens a new SSHChannel . |
| [Reset](#reset-method-ipworksssh_sshserver-class) | This method will reset the class. |
| [SendBytes](#sendbytes-method-ipworksssh_sshserver-class) | Sends binary data to the specified channel. |
| [SendChannelData](#sendchanneldata-method-ipworksssh_sshserver-class) | Sends data over a Secure Shell (SSH) channel. |
| [SendSSHPacket](#sendsshpacket-method-ipworksssh_sshserver-class) | Sends an encoded Secure Shell (SSH) packet to the server. |
| [SendText](#sendtext-method-ipworksssh_sshserver-class) | Sends text to the specified channel. |
| [SetSSHParam](#setsshparam-method-ipworksssh_sshserver-class) | Writes a field to the end of a payload. |
| [Shutdown](#shutdown-method-ipworksssh_sshserver-class) | This method shuts down the server. |
| [StartListening](#startlistening-method-ipworksssh_sshserver-class) | This method starts listening for incoming connections. |
| [StopListening](#stoplistening-method-ipworksssh_sshserver-class) | This method stops listening for new connections. |

## 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.*

|  |  |
| --- | --- |
| [Connected](#connected-event-ipworksssh_sshserver-class) | Fired immediately after a connection completes (or fails). |
| [ConnectionRequest](#connectionrequest-event-ipworksssh_sshserver-class) | This event is fired when a request for connection comes from a remote host. |
| [Disconnected](#disconnected-event-ipworksssh_sshserver-class) | This event is fired when a connection is closed. |
| [Error](#error-event-ipworksssh_sshserver-class) | Fired when errors occur during data delivery. |
| [Log](#log-event-ipworksssh_sshserver-class) | Fired once for each log message. |
| [SSHChannelClosed](#sshchannelclosed-event-ipworksssh_sshserver-class) | Fired when a channel is closed. |
| [SSHChannelDataIn](#sshchanneldatain-event-ipworksssh_sshserver-class) | Fired when data are received on a Secure Shell (SSH) channel. |
| [SSHChannelEOF](#sshchanneleof-event-ipworksssh_sshserver-class) | Fired when the remote peer signals the end of the data stream for the channel. |
| [SSHChannelOpened](#sshchannelopened-event-ipworksssh_sshserver-class) | Fired when a channel is successfully opened. |
| [SSHChannelOpenRequest](#sshchannelopenrequest-event-ipworksssh_sshserver-class) | Fired when a client attempts to open a new channel. |
| [SSHChannelReadyToSend](#sshchannelreadytosend-event-ipworksssh_sshserver-class) | Fired when the class is ready to send data. |
| [SSHChannelRequest](#sshchannelrequest-event-ipworksssh_sshserver-class) | Fired when the client sends a channel request to the SSHHost . |
| [SSHChannelRequested](#sshchannelrequested-event-ipworksssh_sshserver-class) | Fired if the SSHChannelRequest was successful, any further processing for the channel request should be done here. |
| [SSHServiceRequest](#sshservicerequest-event-ipworksssh_sshserver-class) | Fired when a client requests a service to be started. |
| [SSHStatus](#sshstatus-event-ipworksssh_sshserver-class) | Fired to show the progress of the secure connection. |
| [SSHTunnelClosed](#sshtunnelclosed-event-ipworksssh_sshserver-class) | Fired when a connected client attempts to close a tunnel. |
| [SSHTunnelRequested](#sshtunnelrequested-event-ipworksssh_sshserver-class) | Fired when a connected client attempts to establish a forward or reverse tunnel. |
| [SSHUserAuthRequest](#sshuserauthrequest-event-ipworksssh_sshserver-class) | Fired when a client attempts to authenticate a connection. |

## Config Settings

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

|  |  |
| --- | --- |
| [AltSSHCertCount](#AltSSHCertCount) | The number of records in the AltSSHCert configuration settings. |
| [AltSSHCertStore\[i\]](#AltSSHCertStore[i]) | The name of the certificate store. |
| [AltSSHCertStorePassword\[i\]](#AltSSHCertStorePassword[i]) | The password used to open the certificate store. |
| [AltSSHCertStoreType\[i\]](#AltSSHCertStoreType[i]) | The type of certificate store. |
| [AltSSHCertSubject\[i\]](#AltSSHCertSubject[i]) | The alternative certificate subject. |
| [ClientSSHVersionString\[ConnectionId\]](#ClientSSHVersionString[ConnectionId]) | The client's version string. |
| [FireAuthRequestAfterSig](#FireAuthRequestAfterSig) | Whether to fire an informational event after the public key signature has been verified. |
| [KeyboardInteractivePrompts\[ConnectionId\]](#KeyboardInteractivePrompts[ConnectionId]) | Specifies custom keyboard-interactive prompts for particular connections. |
| [KeyRenegotiationThreshold](#KeyRenegotiationThreshold) | Sets the threshold for the SSH Key Renegotiation. |
| [LogLevel](#LogLevel) | Specifies the level of detail that is logged. |
| [MaxAuthAttempts](#MaxAuthAttempts) | The maximum authentication attempts allowed before forcing a disconnect. |
| [NegotiatedStrictKex\[ConnectionId\]](#NegotiatedStrictKex[ConnectionId]) | Returns whether strict key exchange was negotiated to be used. |
| [ServerSSHVersionString](#ServerSSHVersionString) | The SSH version string sent to connecting clients. |
| [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. |
| [SSHMacAlgorithms](#SSHMacAlgorithms) | Specifies the supported Mac algorithms. |
| [SSHPubKeyAuthSigAlgorithms](#SSHPubKeyAuthSigAlgorithms) | Specifies the allowed signature algorithms used by a client performing 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. |
| [UserAuthBanner\[ConnectionId\]](#UserAuthBanner[ConnectionId]) | A custom user authentication banner. |
| [UseStrictKeyExchange](#UseStrictKeyExchange) | Specifies how strict key exchange is supported. |
| [AllowedClients](#AllowedClients) | A comma-separated list of host names or IP addresses that can access the class. |
| [BindExclusively](#BindExclusively) | Whether or not the class considers a local port reserved for exclusive use. |
| [BlockedClients](#BlockedClients) | A comma-separated list of host names or IP addresses that cannot access the class. |
| [ConnectionUID](#ConnectionUID) | The unique connectionId for a connection. |
| [DefaultConnectionTimeout](#DefaultConnectionTimeout) | The inactivity timeout applied to the SSL handshake. |
| [InBufferSize](#InBufferSize) | The size in bytes of the incoming queue of the socket. |
| [KeepAliveInterval](#KeepAliveInterval) | The retry interval, in milliseconds, to be used when a TCP keep-alive packet is sent and no response is received. |
| [KeepAliveRetryCount](#KeepAliveRetryCount) | The number of keep-alive packets to be sent before the remotehost is considered disconnected. |
| [KeepAliveTime](#KeepAliveTime) | The inactivity time in milliseconds before a TCP keep-alive packet is sent. |
| [MaxConnections](#MaxConnections) | The maximum number of connections available. |
| [MaxReadTime](#MaxReadTime) | The maximum time spent reading data from each connection. |
| [OutBufferSize](#OutBufferSize) | The size in bytes of the outgoing queue of the socket. |
| [TcpNoDelay](#TcpNoDelay) | Whether or not to delay when sending packets. |
| [UseIOCP](#UseIOCP) | Whether to use the completion port I/O model. |
| [UseIPv6](#UseIPv6) | Whether to use IPv6. |
| [UseWindowsMessages](#UseWindowsMessages) | Whether to use the WSAAsyncSelect I/O model. |
| [BuildInfo](#BuildInfo) | Information about the product's build. |
| [CodePage](#CodePage) | The system code page used for Unicode to Multibyte translations. |
| [LicenseInfo](#LicenseInfo) | Information about the current license. |
| [MaskSensitiveData](#MaskSensitiveData) | Whether sensitive data is masked in log messages. |
| [ProcessIdleEvents](#ProcessIdleEvents) | Whether the class uses its internal event loop to process events when the main thread is idle. |
| [SelectWaitMillis](#SelectWaitMillis) | The length of time in milliseconds the class will wait when DoEvents is called if there are no events to process. |
| [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. |

# SSHChannelCount Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The number of records in the arrays.

## Object Oriented Interface

```text
public function getSSHChannelCount();
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 1 );
```

## Default Value

0

## Remarks

This property controls the size of the following arrays:

- [BytesSent](#bytessent-property-ipworksssh_sshserver-class)
- [ChannelEOL](#channeleol-property-ipworksssh_sshserver-class)
- [ChannelId](#channelid-property-ipworksssh_sshserver-class)
- [KeyboardInteractivePromptEcho](#keyboardinteractivepromptecho-property-ipworksssh_sshserver-class)
- [KeyboardInteractivePromptPrompt](#keyboardinteractivepromptprompt-property-ipworksssh_sshserver-class)
- [MaxChannelLength](#maxchannellength-property-ipworksssh_sshserver-class)
- [ReadyToSend](#readytosend-property-ipworksssh_sshserver-class)
- [RecordLength](#recordlength-property-ipworksssh_sshserver-class)
- [Service](#service-property-ipworksssh_sshserver-class)
- [SSHCertEffectiveDate](#sshcerteffectivedate-property-ipworksssh_sshserver-class)
- [SSHCertEncoded](#sshcertencoded-property-ipworksssh_sshserver-class)
- [SSHCertExpirationDate](#sshcertexpirationdate-property-ipworksssh_sshserver-class)
- [SSHCertExtendedKeyUsage](#sshcertextendedkeyusage-property-ipworksssh_sshserver-class)
- [SSHCertFingerprint](#sshcertfingerprint-property-ipworksssh_sshserver-class)
- [SSHCertFingerprintSHA1](#sshcertfingerprintsha1-property-ipworksssh_sshserver-class)
- [SSHCertFingerprintSHA256](#sshcertfingerprintsha256-property-ipworksssh_sshserver-class)
- [SSHCertIssuer](#sshcertissuer-property-ipworksssh_sshserver-class)
- [SSHCertPrivateKey](#sshcertprivatekey-property-ipworksssh_sshserver-class)
- [SSHCertPrivateKeyAvailable](#sshcertprivatekeyavailable-property-ipworksssh_sshserver-class)
- [SSHCertPrivateKeyContainer](#sshcertprivatekeycontainer-property-ipworksssh_sshserver-class)
- [SSHCertPublicKey](#sshcertpublickey-property-ipworksssh_sshserver-class)
- [SSHCertPublicKeyAlgorithm](#sshcertpublickeyalgorithm-property-ipworksssh_sshserver-class)
- [SSHCertPublicKeyLength](#sshcertpublickeylength-property-ipworksssh_sshserver-class)
- [SSHCertSerialNumber](#sshcertserialnumber-property-ipworksssh_sshserver-class)
- [SSHCertSignatureAlgorithm](#sshcertsignaturealgorithm-property-ipworksssh_sshserver-class)
- [SSHCertStore](#sshcertstore-property-ipworksssh_sshserver-class)
- [SSHCertStorePassword](#sshcertstorepassword-property-ipworksssh_sshserver-class)
- [SSHCertStoreType](#sshcertstoretype-property-ipworksssh_sshserver-class)
- [SSHCertSubject](#sshcertsubject-property-ipworksssh_sshserver-class)
- [SSHCertSubjectAltNames](#sshcertsubjectaltnames-property-ipworksssh_sshserver-class)
- [SSHCertThumbprintMD5](#sshcertthumbprintmd5-property-ipworksssh_sshserver-class)
- [SSHCertThumbprintSHA1](#sshcertthumbprintsha1-property-ipworksssh_sshserver-class)
- [SSHCertThumbprintSHA256](#sshcertthumbprintsha256-property-ipworksssh_sshserver-class)
- [SSHCertUsage](#sshcertusage-property-ipworksssh_sshserver-class)
- [SSHCertUsageFlags](#sshcertusageflags-property-ipworksssh_sshserver-class)
- [SSHCertVersion](#sshcertversion-property-ipworksssh_sshserver-class)
- [SSHConnectionConnected](#sshconnectionconnected-property-ipworksssh_sshserver-class)
- [SSHConnectionLocalAddress](#sshconnectionlocaladdress-property-ipworksssh_sshserver-class)
- [SSHConnectionRemoteHost](#sshconnectionremotehost-property-ipworksssh_sshserver-class)
- [SSHConnectionRemotePort](#sshconnectionremoteport-property-ipworksssh_sshserver-class)
- [SSHConnectionTimeout](#sshconnectiontimeout-property-ipworksssh_sshserver-class)

The array indices start at *0* and end at *SSHChannelCount - 1*.

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

## Data Type

Integer

# BytesSent Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property specifies the number of bytes actually sent after a sending channel data.

## Object Oriented Interface

```text
public function getBytesSent($sshchannelid);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 2 , $sshchannelid);
```

## Default Value

0

## Remarks

This property specifies the number of bytes actually sent after a sending channel data.

The *$sshchannelid* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHChannelCount](#sshchannelcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

Integer

# ChannelEOL Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Breaks the incoming data stream into chunks separated by EOL .

## Object Oriented Interface

```text
public function getChannelEOL($sshchannelid);
public function setChannelEOL($sshchannelid, $value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 3 , $sshchannelid);
ipworksssh_sshserver_set($res, 3, $value , $sshchannelid);
```

## Default Value

''

## Remarks

Breaks the incoming data stream into chunks separated by *EOL*.

This property is a binary string. Notably, this means that it can be more than one byte long, and it can contain *NULL* bytes.

[ChannelEOL](#channeleol-property-ipworksssh_sshserver-class) and [MaxChannelLength](#maxchannellength-property-ipworksssh_sshserver-class) *must* be set together or unexpected behavior could occur.

The *$sshchannelid* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHChannelCount](#sshchannelcount-property-ipworksssh_sshserver-class) property.

This property is not available at design time.

## Data Type

String

# ChannelId Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property provides an Id generated by the class to identify the current Secure Shell (SSH) channel.

## Object Oriented Interface

```text
public function getChannelId($sshchannelid);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 4 , $sshchannelid);
```

## Default Value

''

## Remarks

This property provides an Id generated by the class to identify the current Secure Shell (SSH) channel.

This Id is unique to this channel.

The *$sshchannelid* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHChannelCount](#sshchannelcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# MaxChannelLength Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property specifies the maximum amount of data to accumulate when no EOL is found.

## Object Oriented Interface

```text
public function getMaxChannelLength($sshchannelid);
public function setMaxChannelLength($sshchannelid, $value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 5 , $sshchannelid);
ipworksssh_sshserver_set($res, 5, $value , $sshchannelid);
```

## Default Value

0

## Remarks

This property specifies the maximum amount of data to accumulate when no *EOL* is found.

[MaxChannelLength](#maxchannellength-property-ipworksssh_sshserver-class) is the size of an internal buffer, which holds received data while waiting for a [ChannelEOL](#channeleol-property-ipworksssh_sshserver-class) string.

If the [ChannelEOL](#channeleol-property-ipworksssh_sshserver-class) string is found in the input stream before MaxChannelLength bytes are received, the SSHChannelData event is fired with the *ChannelDataEOLFound* parameter set to True, and the buffer is reset.

If no [ChannelEOL](#channeleol-property-ipworksssh_sshserver-class) is found, and [MaxChannelLength](#maxchannellength-property-ipworksssh_sshserver-class) bytes are accumulated in the buffer, the SSHChannelData event is fired with the *ChannelDataEOLFound* parameter set to False, and the buffer is reset.

[ChannelEOL](#channeleol-property-ipworksssh_sshserver-class) and [MaxChannelLength](#maxchannellength-property-ipworksssh_sshserver-class) *must* be set together or unexpected behavior could occur.

The *$sshchannelid* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHChannelCount](#sshchannelcount-property-ipworksssh_sshserver-class) property.

This property is not available at design time.

## Data Type

Integer

# ReadyToSend Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property is True when data can be sent over the Secure Shell (SSH) channel.

## Object Oriented Interface

```text
public function getReadyToSend($sshchannelid);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 6 , $sshchannelid);
```

## Default Value

false

## Remarks

This property is True when data can be sent over the Secure Shell (SSH) channel.

When Timeout is set to *0* (asynchronous) sending data may result in an error if the channel or underlying socket cannot accept more data to send. Monitor SSHChannelReadyToSend or [ReadyToSend](#readytosend-property-ipworksssh_sshserver-class) to determine when data can be sent again.

When Timeout is set to a positive value, the class will block when sending data until the data can be successfully sent and SSHChannelReadyToSend and [ReadyToSend](#readytosend-property-ipworksssh_sshserver-class) do not need to be monitored.

The *$sshchannelid* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHChannelCount](#sshchannelcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

Boolean

# RecordLength Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property holds the current record length set by ChangeRecordLength .

## Object Oriented Interface

```text
public function getRecordLength($sshchannelid);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 7 , $sshchannelid);
```

## Default Value

0

## Remarks

This property holds the current record length set by ChangeRecordLength. When this value is a positive number, the class will accumulate data until [RecordLength](#recordlength-property-ipworksssh_sshserver-class) is reached and only then will it fire the SSHChannelDataIn event with the data of length [RecordLength](#recordlength-property-ipworksssh_sshserver-class). This allows data to be received as records of known length. This value can be changed at any time by calling ChangeRecordLength, including within the SSHChannelDataIn event.

A value of *0* (default) means this setting is not used.

The *$sshchannelid* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHChannelCount](#sshchannelcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

Integer

# Service Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property holds the channel type that was requested when opening the channel.

## Object Oriented Interface

```text
public function getService($sshchannelid);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 8 , $sshchannelid);
```

## Default Value

''

## Remarks

This property holds the channel type that was requested when opening the channel. For instance "session" or "forwarded-tcpip".

The *$sshchannelid* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHChannelCount](#sshchannelcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# ConnectionBacklog Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property includes the maximum number of pending connections maintained by the Transmission Control Protocol (TCP)/IP subsystem.

## Object Oriented Interface

```text
public function getConnectionBacklog();
public function setConnectionBacklog($value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 9 );
ipworksssh_sshserver_set($res, 9, $value );
```

## Default Value

5

## Remarks

This property contains the maximum number of pending connections maintained by the TCP/IP subsystem. This value reflects the SOMAXCONN option for the main listening socket. The default value for most systems is 5. You may set this property to a larger value if the server is expected to receive a large number of connections, and queuing them is desirable.

This property is not available at design time.

## Data Type

Integer

# SSHConnectionCount Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The number of records in the SSHConnection arrays.

## Object Oriented Interface

```text
public function getSSHConnectionCount();
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 10 );
```

## Default Value

0

## Remarks

This property controls the size of the following arrays:

- [SSHConnectionConnected](#sshconnectionconnected-property-ipworksssh_sshserver-class)
- [SSHConnectionLocalAddress](#sshconnectionlocaladdress-property-ipworksssh_sshserver-class)
- [SSHConnectionRemoteHost](#sshconnectionremotehost-property-ipworksssh_sshserver-class)
- [SSHConnectionRemotePort](#sshconnectionremoteport-property-ipworksssh_sshserver-class)
- [SSHConnectionTimeout](#sshconnectiontimeout-property-ipworksssh_sshserver-class)

The array indices start at *0* and end at *SSHConnectionCount - 1*.

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

## Data Type

Integer

# SSHConnectionConnected Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property indicates the status of individual connections.

## Object Oriented Interface

```text
public function getSSHConnectionConnected($connectionid);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 11 , $connectionid);
```

## Default Value

false

## Remarks

This property indicates the status of individual connections.

When *true*, the connection is established. Use the Disconnect method to disconnect an existing connection.

The *$connectionid* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHConnectionCount](#sshconnectioncount-property-ipworksssh_sshserver-class) property.

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

## Data Type

Boolean

# SSHConnectionLocalAddress Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property shows the IP address of the interface through which the connection is passing.

## Object Oriented Interface

```text
public function getSSHConnectionLocalAddress($connectionid);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 13 , $connectionid);
```

## Default Value

''

## Remarks

This property shows the IP address of the interface through which the connection is passing.

[LocalAddress](#SSHServer_p_LocalAddress) is important for multihomed hosts in cases in which it can be used to identify the particular network interface an individual connection is going through.

The *$connectionid* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHConnectionCount](#sshconnectioncount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHConnectionRemoteHost Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The RemoteHost shows the IP address of the remote host through which the connection is coming.

## Object Oriented Interface

```text
public function getSSHConnectionRemoteHost($connectionid);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 14 , $connectionid);
```

## Default Value

''

## Remarks

The [RemoteHost](#SSHServer_p_RemoteHost) shows the IP address of the remote host through which the connection is coming.

The connection must be valid or an error will be fired.

If the class is configured to use a *SOCKS* firewall, the value assigned to this property may be preceded with an "*". If this is the case, the host name is passed to the firewall unresolved and the firewall performs the DNS resolution.

The *$connectionid* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHConnectionCount](#sshconnectioncount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHConnectionRemotePort Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The RemotePort shows the Transmission Control Protocol (TCP) port on the remote host through which the connection is coming.

## Object Oriented Interface

```text
public function getSSHConnectionRemotePort($connectionid);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 15 , $connectionid);
```

## Default Value

0

## Remarks

The [RemotePort](#SSHServer_p_RemotePort) shows the Transmission Control Protocol (TCP) port on the remote host through which the connection is coming.

The connection must be valid or an error will be fired.

The *$connectionid* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHConnectionCount](#sshconnectioncount-property-ipworksssh_sshserver-class) property.

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

## Data Type

Integer

# SSHConnectionTimeout Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property contains a timeout for the class.

## Object Oriented Interface

```text
public function getSSHConnectionTimeout($connectionid);
public function setSSHConnectionTimeout($connectionid, $value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 16 , $connectionid);
ipworksssh_sshserver_set($res, 16, $value , $connectionid);
```

## Default Value

0

## Remarks

This property contains a timeout for the class.

If the Timeout property is set to 0, all operations return immediately, potentially failing with an *'WOULDBLOCK'* error if data cannot be sent or received immediately.

If Timeout is set to a positive value, the class will automatically retry each operation that otherwise would result in a *'WOULDBLOCK'* error for a maximum of Timeout seconds.

The class will use DoEvents 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 fails with an error.

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 0 (asynchronous operation).

The *$connectionid* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHConnectionCount](#sshconnectioncount-property-ipworksssh_sshserver-class) property.

This property is not available at design time.

## Data Type

Integer

# DefaultAuthMethods Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The supported authentication methods.

## Object Oriented Interface

```text
public function getDefaultAuthMethods();
public function setDefaultAuthMethods($value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 17 );
ipworksssh_sshserver_set($res, 17, $value );
```

## Default Value

'password,publickey'

## Remarks

This property specifies the supported authentication methods. The client will choose one of the supported mechanisms when authenticating to the class.

This must be a comma-separated list of values. For more information on authenticating clients, see the [SSHUserAuthRequest](#sshuserauthrequest-event-ipworksssh_sshserver-class) event.

The following is a list of methods implemented by the class:

|  |  |
| --- | --- |
| none | This authentication method is used by most Secure Shell (SSH) clients to obtain the list of authentication methods available for the user's account. In most cases, you should not accept a request using this authentication method. |
| password | AuthParam will contain the user-supplied password. If the password is correct, set Accept to True. |
| publickey | AuthParam will contain an SSH2 public key blob. If the user's public key is acceptable, set Accept or PartialSuccess to true. The class will then handle verifying the digital signature and will respond to the client accordingly. |
| keyboard-interactive | [SSHUserAuthRequest](#sshuserauthrequest-event-ipworksssh_sshserver-class) will fire multiple times for keyboard-interactive authentication: It will fire once for each response sent by the client in the SSH_MSG_USERAUTH_INFO_RESPONSE packet (one time for each prompt specified by the daemon). The index of each response will be specified as a suffix in AuthMethod, with AuthParam containing the response to the corresponding prompt (e.g., keyboard-interactive-1, keyboard-interactive-2, and so on). Finally, [SSHUserAuthRequest](#sshuserauthrequest-event-ipworksssh_sshserver-class) will fire one last time with AuthMethod set to "keyboard-interactive" and AuthParam set to an empty string. The daemon must set Accept to True every time to allow the authentication process to succeed. |

## Data Type

String

# DefaultIdleTimeout Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property includes the default idle timeout for inactive clients.

## Object Oriented Interface

```text
public function getDefaultIdleTimeout();
public function setDefaultIdleTimeout($value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 18 );
ipworksssh_sshserver_set($res, 18, $value );
```

## Default Value

0

## Remarks

This property specifies the idle timeout (in seconds) for clients. When set to a positive value, the class will disconnect idle clients after the specified timeout.

This applies only to clients that have not sent or received data within DefaultIdleTimeout seconds.

If set to 0 (default), no idle timeout is applied.

NOTE: [DoEvents](#doevents-method-ipworksssh_sshserver-class) must be called for the class to check existing connections.

## Data Type

Integer

# DefaultTimeout Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The initial timeout value to be used by incoming connections.

## Object Oriented Interface

```text
public function getDefaultTimeout();
public function setDefaultTimeout($value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 19 );
ipworksssh_sshserver_set($res, 19, $value );
```

## Default Value

60

## Remarks

This property is used by the class to set the operational timeout value of all inbound connections once they are established. If the timeout is set to 0, all inbound connections will behave asynchronously. The default value is 60, meaning the class will behave synchronously.

## Data Type

Integer

# KeyboardInteractiveMessage Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The instructions to send to the client during keyboard-interactive authentication.

## Object Oriented Interface

```text
public function getKeyboardInteractiveMessage();
public function setKeyboardInteractiveMessage($value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 20 );
ipworksssh_sshserver_set($res, 20, $value );
```

## Default Value

''

## Remarks

This property should be set to the main instructions to send to the client during keyboard-interactive authentication.

## Data Type

String

# KeyboardInteractivePromptCount Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The number of records in the KeyboardInteractivePrompt arrays.

## Object Oriented Interface

```text
public function getKeyboardInteractivePromptCount();
public function setKeyboardInteractivePromptCount($value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 21 );
ipworksssh_sshserver_set($res, 21, $value );
```

## Default Value

0

## Remarks

This property controls the size of the following arrays:

- [KeyboardInteractivePromptEcho](#keyboardinteractivepromptecho-property-ipworksssh_sshserver-class)
- [KeyboardInteractivePromptPrompt](#keyboardinteractivepromptprompt-property-ipworksssh_sshserver-class)

The array indices start at *0* and end at *KeyboardInteractivePromptCount - 1*.

This property is not available at design time.

## Data Type

Integer

# KeyboardInteractivePromptEcho Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property specifies whether or not the client should echo the value entered by the user.

## Object Oriented Interface

```text
public function getKeyboardInteractivePromptEcho($promptindex);
public function setKeyboardInteractivePromptEcho($promptindex, $value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 22 , $promptindex);
ipworksssh_sshserver_set($res, 22, $value , $promptindex);
```

## Default Value

false

## Remarks

This property specifies whether or not the client should echo the value entered by the user.

The *$promptindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [KeyboardInteractivePromptCount](#keyboardinteractivepromptcount-property-ipworksssh_sshserver-class) property.

This property is not available at design time.

## Data Type

Boolean

# KeyboardInteractivePromptPrompt Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property contains the prompt label or text the client should present to the user.

## Object Oriented Interface

```text
public function getKeyboardInteractivePromptPrompt($promptindex);
public function setKeyboardInteractivePromptPrompt($promptindex, $value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 23 , $promptindex);
ipworksssh_sshserver_set($res, 23, $value , $promptindex);
```

## Default Value

''

## Remarks

This property contains the prompt label or text the client should present to the user.

The *$promptindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [KeyboardInteractivePromptCount](#keyboardinteractivepromptcount-property-ipworksssh_sshserver-class) property.

This property is not available at design time.

## Data Type

String

# Listening Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This property indicates whether the class is listening for incoming connections on LocalPort.

## Object Oriented Interface

```text
public function getListening();
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 24 );
```

## Default Value

false

## Remarks

This property indicates whether the class is listening for connections on the port specified by the [LocalPort](#localport-property-ipworksssh_sshserver-class) property. Use the [StartListening](#startlistening-method-ipworksssh_sshserver-class) and [StopListening](#stoplistening-method-ipworksssh_sshserver-class) methods to control whether the class is listening.

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

## Data Type

Boolean

# LocalHost Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

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

## Object Oriented Interface

```text
public function getLocalHost();
public function setLocalHost($value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 25 );
ipworksssh_sshserver_set($res, 25, $value );
```

## 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.

## Data Type

String

# LocalPort Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The Transmission Control Protocol (TCP) port in the local host where the class listens.

## Object Oriented Interface

```text
public function getLocalPort();
public function setLocalPort($value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 26 );
ipworksssh_sshserver_set($res, 26, $value );
```

## Default Value

22

## Remarks

The LocalPort property must be set before TCPServer starts listening. If its value is 0, then the TCP/IP subsystem picks a port number at random. The port number can be found by checking the value of the LocalPort property after TCPServer is in listening mode (after successfully assigning True to the [Listening](#listening-property-ipworksssh_sshserver-class) property).

NOTE: The service port is not shared among servers (i.e., only one TCPServer can be 'listening' on a particular port at one time).

## Data Type

Integer

# SSHCertCount Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The number of records in the SSHCert arrays.

## Object Oriented Interface

```text
public function getSSHCertCount();
public function setSSHCertCount($value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 27 );
ipworksssh_sshserver_set($res, 27, $value );
```

## Default Value

0

## Remarks

This property controls the size of the following arrays:

- [SSHCertEffectiveDate](#sshcerteffectivedate-property-ipworksssh_sshserver-class)
- [SSHCertEncoded](#sshcertencoded-property-ipworksssh_sshserver-class)
- [SSHCertExpirationDate](#sshcertexpirationdate-property-ipworksssh_sshserver-class)
- [SSHCertExtendedKeyUsage](#sshcertextendedkeyusage-property-ipworksssh_sshserver-class)
- [SSHCertFingerprint](#sshcertfingerprint-property-ipworksssh_sshserver-class)
- [SSHCertFingerprintSHA1](#sshcertfingerprintsha1-property-ipworksssh_sshserver-class)
- [SSHCertFingerprintSHA256](#sshcertfingerprintsha256-property-ipworksssh_sshserver-class)
- [SSHCertIssuer](#sshcertissuer-property-ipworksssh_sshserver-class)
- [SSHCertPrivateKey](#sshcertprivatekey-property-ipworksssh_sshserver-class)
- [SSHCertPrivateKeyAvailable](#sshcertprivatekeyavailable-property-ipworksssh_sshserver-class)
- [SSHCertPrivateKeyContainer](#sshcertprivatekeycontainer-property-ipworksssh_sshserver-class)
- [SSHCertPublicKey](#sshcertpublickey-property-ipworksssh_sshserver-class)
- [SSHCertPublicKeyAlgorithm](#sshcertpublickeyalgorithm-property-ipworksssh_sshserver-class)
- [SSHCertPublicKeyLength](#sshcertpublickeylength-property-ipworksssh_sshserver-class)
- [SSHCertSerialNumber](#sshcertserialnumber-property-ipworksssh_sshserver-class)
- [SSHCertSignatureAlgorithm](#sshcertsignaturealgorithm-property-ipworksssh_sshserver-class)
- [SSHCertStore](#sshcertstore-property-ipworksssh_sshserver-class)
- [SSHCertStorePassword](#sshcertstorepassword-property-ipworksssh_sshserver-class)
- [SSHCertStoreType](#sshcertstoretype-property-ipworksssh_sshserver-class)
- [SSHCertSubject](#sshcertsubject-property-ipworksssh_sshserver-class)
- [SSHCertSubjectAltNames](#sshcertsubjectaltnames-property-ipworksssh_sshserver-class)
- [SSHCertThumbprintMD5](#sshcertthumbprintmd5-property-ipworksssh_sshserver-class)
- [SSHCertThumbprintSHA1](#sshcertthumbprintsha1-property-ipworksssh_sshserver-class)
- [SSHCertThumbprintSHA256](#sshcertthumbprintsha256-property-ipworksssh_sshserver-class)
- [SSHCertUsage](#sshcertusage-property-ipworksssh_sshserver-class)
- [SSHCertUsageFlags](#sshcertusageflags-property-ipworksssh_sshserver-class)
- [SSHCertVersion](#sshcertversion-property-ipworksssh_sshserver-class)

The array indices start at *0* and end at *SSHCertCount - 1*.

This property is not available at design time.

## Data Type

Integer

# SSHCertEffectiveDate Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The date on which this certificate becomes valid.

## Object Oriented Interface

```text
public function getSSHCertEffectiveDate($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 28 , $sshcertindex);
```

## Default Value

''

## Remarks

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.

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertExpirationDate Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The date on which the certificate expires.

## Object Oriented Interface

```text
public function getSSHCertExpirationDate($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 29 , $sshcertindex);
```

## Default Value

''

## Remarks

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.

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertExtendedKeyUsage Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

A comma-delimited list of extended key usage identifiers.

## Object Oriented Interface

```text
public function getSSHCertExtendedKeyUsage($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 30 , $sshcertindex);
```

## Default Value

''

## Remarks

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

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertFingerprint Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The hex-encoded, 16-byte MD5 fingerprint of the certificate.

## Object Oriented Interface

```text
public function getSSHCertFingerprint($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 31 , $sshcertindex);
```

## Default Value

''

## Remarks

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*

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertFingerprintSHA1 Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The hex-encoded, 20-byte SHA-1 fingerprint of the certificate.

## Object Oriented Interface

```text
public function getSSHCertFingerprintSHA1($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 32 , $sshcertindex);
```

## Default Value

''

## Remarks

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*

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertFingerprintSHA256 Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The hex-encoded, 32-byte SHA-256 fingerprint of the certificate.

## Object Oriented Interface

```text
public function getSSHCertFingerprintSHA256($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 33 , $sshcertindex);
```

## Default Value

''

## Remarks

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*

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertIssuer Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The issuer of the certificate.

## Object Oriented Interface

```text
public function getSSHCertIssuer($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 34 , $sshcertindex);
```

## Default Value

''

## Remarks

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

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertPrivateKey Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The private key of the certificate (if available).

## Object Oriented Interface

```text
public function getSSHCertPrivateKey($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 35 , $sshcertindex);
```

## Default Value

''

## Remarks

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

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

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertPrivateKeyAvailable Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Whether a PrivateKey is available for the selected certificate.

## Object Oriented Interface

```text
public function getSSHCertPrivateKeyAvailable($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 36 , $sshcertindex);
```

## Default Value

false

## Remarks

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

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

Boolean

# SSHCertPrivateKeyContainer Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The name of the PrivateKey container for the certificate (if available).

## Object Oriented Interface

```text
public function getSSHCertPrivateKeyContainer($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 37 , $sshcertindex);
```

## Default Value

''

## Remarks

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

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertPublicKey Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The public key of the certificate.

## Object Oriented Interface

```text
public function getSSHCertPublicKey($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 38 , $sshcertindex);
```

## Default Value

''

## Remarks

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

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertPublicKeyAlgorithm Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The textual description of the certificate's public key algorithm.

## Object Oriented Interface

```text
public function getSSHCertPublicKeyAlgorithm($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 39 , $sshcertindex);
```

## Default Value

''

## Remarks

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.

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertPublicKeyLength Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The length of the certificate's public key (in bits).

## Object Oriented Interface

```text
public function getSSHCertPublicKeyLength($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 40 , $sshcertindex);
```

## Default Value

0

## Remarks

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

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

Integer

# SSHCertSerialNumber Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The serial number of the certificate encoded as a string.

## Object Oriented Interface

```text
public function getSSHCertSerialNumber($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 41 , $sshcertindex);
```

## Default Value

''

## Remarks

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.

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertSignatureAlgorithm Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The text description of the certificate's signature algorithm.

## Object Oriented Interface

```text
public function getSSHCertSignatureAlgorithm($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 42 , $sshcertindex);
```

## Default Value

''

## Remarks

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.

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertStore Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The name of the certificate store for the client certificate.

## Object Oriented Interface

```text
public function getSSHCertStore($sshcertindex);
public function setSSHCertStore($sshcertindex, $value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 43 , $sshcertindex);
ipworksssh_sshserver_set($res, 43, $value , $sshcertindex);
```

## Default Value

'MY'

## Remarks

The name of the certificate store for the client certificate.

The [StoreType](#SSHServer_p_StoreType) property denotes the type of the certificate store specified by [Store](#SSHServer_p_Store). If the store is password-protected, specify the password in [StorePassword](#SSHServer_p_StorePassword).

[Store](#SSHServer_p_Store) is used in conjunction with the [Subject](#SSHServer_p_Subject) property to specify client certificates. If [Store](#SSHServer_p_Store) has a value, and [Subject](#SSHServer_p_Subject) or [Encoded](#SSHServer_p_Encoded) is set, a search for a certificate is initiated. Please see the [Subject](#SSHServer_p_Subject) property 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. |

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).

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

This property is not available at design time.

## Data Type

Binary String

# SSHCertStorePassword Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

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

## Object Oriented Interface

```text
public function getSSHCertStorePassword($sshcertindex);
public function setSSHCertStorePassword($sshcertindex, $value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 44 , $sshcertindex);
ipworksssh_sshserver_set($res, 44, $value , $sshcertindex);
```

## Default Value

''

## Remarks

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

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

This property is not available at design time.

## Data Type

String

# SSHCertStoreType Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The type of certificate store for this certificate.

## Object Oriented Interface

```text
public function getSSHCertStoreType($sshcertindex);
public function setSSHCertStoreType($sshcertindex, $value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 45 , $sshcertindex);
ipworksssh_sshserver_set($res, 45, $value , $sshcertindex);
```

## Possible Values

```text
SSHSERVER_SSHCERTSTORETYPE_USER(0), SSHSERVER_SSHCERTSTORETYPE_MACHINE(1), SSHSERVER_SSHCERTSTORETYPE_PFXFILE(2), SSHSERVER_SSHCERTSTORETYPE_PFXBLOB(3), SSHSERVER_SSHCERTSTORETYPE_JKSFILE(4), SSHSERVER_SSHCERTSTORETYPE_JKSBLOB(5), SSHSERVER_SSHCERTSTORETYPE_PEMKEY_FILE(6), SSHSERVER_SSHCERTSTORETYPE_PEMKEY_BLOB(7), SSHSERVER_SSHCERTSTORETYPE_PUBLIC_KEY_FILE(8), SSHSERVER_SSHCERTSTORETYPE_PUBLIC_KEY_BLOB(9), SSHSERVER_SSHCERTSTORETYPE_SSHPUBLIC_KEY_BLOB(10), SSHSERVER_SSHCERTSTORETYPE_P7BFILE(11), SSHSERVER_SSHCERTSTORETYPE_P7BBLOB(12), SSHSERVER_SSHCERTSTORETYPE_SSHPUBLIC_KEY_FILE(13), SSHSERVER_SSHCERTSTORETYPE_PPKFILE(14), SSHSERVER_SSHCERTSTORETYPE_PPKBLOB(15), SSHSERVER_SSHCERTSTORETYPE_XMLFILE(16), SSHSERVER_SSHCERTSTORETYPE_XMLBLOB(17), SSHSERVER_SSHCERTSTORETYPE_JWKFILE(18), SSHSERVER_SSHCERTSTORETYPE_JWKBLOB(19), SSHSERVER_SSHCERTSTORETYPE_SECURITY_KEY(20), SSHSERVER_SSHCERTSTORETYPE_BCFKSFILE(21), SSHSERVER_SSHCERTSTORETYPE_BCFKSBLOB(22), SSHSERVER_SSHCERTSTORETYPE_PKCS11(23), SSHSERVER_SSHCERTSTORETYPE_AUTO(99)
```

## Default Value

0

## Remarks

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 property 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](#Type_Certificate) object and pass cstPKCS11 as the [StoreType](#SSHServer_p_StoreType), the full path of the PKCS#11 DLL as the [Store](#SSHServer_p_Store), and the PIN as the [StorePassword](#SSHServer_p_StorePassword). Code Example. SSH Authentication with Security Key (without CertMgr): Alternatively, collect the necessary data using the [CertMgr](#CertMgr) class by calling the [ListStoreCertificates](#CertMgr_m_ListStoreCertificates) method after setting the corresponding properties accordingly. The certificate information returned in the [CertList](#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](#SSHServer_p_Store) and set [StorePassword](#SSHServer_p_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. |

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

This property is not available at design time.

## Data Type

Integer

# SSHCertSubjectAltNames Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

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

## Object Oriented Interface

```text
public function getSSHCertSubjectAltNames($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 46 , $sshcertindex);
```

## Default Value

''

## Remarks

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

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertThumbprintMD5 Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The MD5 hash of the certificate.

## Object Oriented Interface

```text
public function getSSHCertThumbprintMD5($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 47 , $sshcertindex);
```

## Default Value

''

## Remarks

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.

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertThumbprintSHA1 Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The SHA-1 hash of the certificate.

## Object Oriented Interface

```text
public function getSSHCertThumbprintSHA1($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 48 , $sshcertindex);
```

## Default Value

''

## Remarks

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.

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertThumbprintSHA256 Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The SHA-256 hash of the certificate.

## Object Oriented Interface

```text
public function getSSHCertThumbprintSHA256($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 49 , $sshcertindex);
```

## Default Value

''

## Remarks

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.

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertUsage Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The text description of UsageFlags .

## Object Oriented Interface

```text
public function getSSHCertUsage($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 50 , $sshcertindex);
```

## Default Value

''

## Remarks

The text description of [UsageFlags](#SSHServer_p_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.

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertUsageFlags Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The flags that show intended use for the certificate.

## Object Oriented Interface

```text
public function getSSHCertUsageFlags($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 51 , $sshcertindex);
```

## Default Value

0

## Remarks

The flags that show intended use for the certificate. The value of [UsageFlags](#SSHServer_p_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](#SSHServer_p_Usage) property for a text representation of [UsageFlags](#SSHServer_p_UsageFlags).

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

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

Integer

# SSHCertVersion Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The certificate's version number.

## Object Oriented Interface

```text
public function getSSHCertVersion($sshcertindex);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 52 , $sshcertindex);
```

## Default Value

''

## Remarks

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

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

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

## Data Type

String

# SSHCertSubject Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The subject of the certificate used for client authentication.

## Object Oriented Interface

```text
public function getSSHCertSubject($sshcertindex);
public function setSSHCertSubject($sshcertindex, $value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 53 , $sshcertindex);
ipworksssh_sshserver_set($res, 53, $value , $sshcertindex);
```

## Default Value

''

## Remarks

The subject of the certificate used for client authentication.

This property must be set after all other certificate properties are set. When this property is set, a search is performed in the current certificate store to locate a certificate with a matching subject.

If a matching certificate is found, the property is set to the full subject of the matching certificate.

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.

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

This property is not available at design time.

## Data Type

String

# SSHCertEncoded Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The certificate (PEM/Base64 encoded).

## Object Oriented Interface

```text
public function getSSHCertEncoded($sshcertindex);
public function setSSHCertEncoded($sshcertindex, $value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 54 , $sshcertindex);
ipworksssh_sshserver_set($res, 54, $value , $sshcertindex);
```

## Default Value

''

## Remarks

The certificate (PEM/Base64 encoded). This property is used to assign a specific certificate. The [Store](#SSHServer_p_Store) and [Subject](#SSHServer_p_Subject) properties also may be used to specify a certificate.

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

The *$sshcertindex* parameter specifies the index of the item in the array. The size of the array is controlled by the [SSHCertCount](#sshcertcount-property-ipworksssh_sshserver-class) property.

This property is not available at design time.

## Data Type

Binary String

# SSHCompressionAlgorithms Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The comma-separated list containing all allowable compression algorithms.

## Object Oriented Interface

```text
public function getSSHCompressionAlgorithms();
public function setSSHCompressionAlgorithms($value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 55 );
ipworksssh_sshserver_set($res, 55, $value );
```

## 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

## Data Type

String

# SSHEncryptionAlgorithms Property ([IPWorksSSH_SSHServer](#sshserver-class) Class)

The comma-separated list containing all allowable encryption algorithms.

## Object Oriented Interface

```text
public function getSSHEncryptionAlgorithms();
public function setSSHEncryptionAlgorithms($value);
```

## Procedural Interface

```text
ipworksssh_sshserver_get($res, 56 );
ipworksssh_sshserver_set($res, 56, $value );
```

## 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

## Data Type

String

# ChangeRecordLength Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Changes the length of received data records.

## Object Oriented Interface

```text
public function doChangeRecordLength($channelid, $recordlength);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_changerecordlength($res, $channelid, $recordlength);
```

## Remarks

This method defines the length of data records to be received (in bytes) for the specified *ChannelId*.

If *RecordLength* is set to a positive value, the class will accumulate data until *RecordLength* bytes of data is received and only then will it fire the [SSHChannelDataIn](#sshchanneldatain-event-ipworksssh_sshserver-class) event with data of length *RecordLength*. This allows data to be received as records of known length. This method can be called at any time to change the record length, including within the DataIn event.

A value of 0 (default) means this functionality is not used.

# CloseChannel Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Closes an existing SSHChannel .

## Object Oriented Interface

```text
public function doCloseChannel($channelid);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_closechannel($res, $channelid);
```

## Remarks

*ChannelId* is the identifier for the Secure Shell (SSH) channel to be closed.

# Config Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Sets or retrieves a configuration setting.

## Object Oriented Interface

```text
public function doConfig($configurationstring);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_config($res, $configurationstring);
```

## Remarks

Config is a generic method available in every class. It is used to set and retrieve [configuration settings](#config-settings-sshserver-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-sshserver-class), you must call *Config("PROPERTY")*. The value will be returned as a string.

# Disconnect Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This method disconnects the specified client.

## Object Oriented Interface

```text
public function doDisconnect($connectionid);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_disconnect($res, $connectionid);
```

## Remarks

Calling this method will disconnect the client specified by the *ConnectionId* parameter.

# DoEvents Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This method processes events from the internal message queue.

## Object Oriented Interface

```text
public function doEvents();
```

## Procedural Interface

```text
ipworksssh_sshserver_do_doevents($res);
```

## 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.

# ExchangeKeys Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Causes the class to exchange a new set of session keys on the specified connection.

## Object Oriented Interface

```text
public function doExchangeKeys($connectionid);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_exchangekeys($res, $connectionid);
```

## Remarks

Secure Shell (SSH) key renegotiation can be initiated by either end of an established SSH connection. ExchangeKeys allows the server to start such a renegotiation with the client. During this process, [SSHStatus](#sshstatus-event-ipworksssh_sshserver-class) events will fire with updates about the key negotiation process.

The SSH 2.0 specification recommends that key renegotiation be done once for 2 gigabytes (GB) of data processed by the connection, or once every day. This makes it more difficult to break the security of data-intensive or long-lived connections.

# GetSSHParam Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Reads a field from a Secure Shell (SSH) packet's payload.

## Object Oriented Interface

```text
public function doGetSSHParam($payload, $field);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_getsshparam($res, $payload, $field);
```

## Remarks

This method is used to read the value of a particular field from an SSH packet's payload. *Payload* should contain the full payload of a packet received by an event such as [SSHChannelRequest](#sshchannelrequest-event-ipworksssh_sshserver-class). *Field* is the name of a field to be read out of the packet.

The following is a list of the names of well-known channel request field names and their encodings:

|  |  |
| --- | --- |
| ChannelId (int32) | The Id of the channel that received the packet. |
| RequestType (string) | The type of channel requested. |
| WantsReply (boolean) | Whether or not the client wants a reply to the request. |

The remaining fields that are available in the payload are dependent on the value of *RequestType*.

**pty-req**

Pty-req is a request to open a pseudo terminal on the specified channel. The following fields are available:

|  |  |
| --- | --- |
| TerminalType (string) | The type of terminal being requested (e.g., "vt100"). |
| TerminalWidthCharacters (int32) | The width, in characters, of the terminal to be opened. |
| TerminalHeightRows (int32) | The height, in rows, of the terminal to be opened. |
| TerminalWidthPixels (int32) | The width, in pixels, of the terminal to be opened. |
| TerminalHeightPixels (int32) | The height, in pixels, of the terminal to be opened. |
| TerminalModes (string) | A list of op-val (int32-byte) encoded modes to be used by the terminal. |

**x11-req**

X11-req is a request to forward x11 sessions over a channel. The following fields are available:

|  |  |
| --- | --- |
| SingleConnection (boolean) | Disallows more than one connection to be forwarded by the channel. |
| X11AuthProtocol (string) | The authentication protocol to be used (e.g., "MIT-MAGIC-COOKIE-1"). |
| X11AuthCookie (string) | A hexadecimal-encoded cookie to be used for authentication. |
| X11ScreenNumber (int32) | The x11 screen number to be used. |

**env**

Env is a request to set an environment variable to be passed into a shell that may be started later. The following fields are available:

|  |  |
| --- | --- |
| VariableName (string) | The name of the variable to be set. |
| VariableValue (string) | The value of the variable to be set. |

**exec**

Exec is a request to execute a command on the channel using the authenticated user's shell. The following field is available:

|  |  |
| --- | --- |
| Command (string) | The command to be executed. |

**subsystem**

Subsystem is a request to start a subsystem on the specified channel. The following field is available:

|  |  |
| --- | --- |
| Subsystem (string) | The name of the subsystem to be started (e.g., "sftp"). |

**xon-xoff**

Xon-xoff instructs the server to allow or disallow control-S/control-Q style flow control. The following field is available:

|  |  |
| --- | --- |
| ClientCanDo (boolean) | Whether or not the server should enable flow control. |

**signal**

Sends a signal to the remote process/service. The following field is available:

|  |  |
| --- | --- |
| SignalName (string) | The name of the signal to be sent. |

If the packet type is not well known, *Field* should start with the special character "%" and contain a comma-separated list of field types as defined in [SetSSHParam](#setsshparam-method-ipworksssh_sshserver-class). For example, reading out the X11AuthProtocol of an x11-req payload, you can use "%s,f".

NOTE: The return value is a string encoded the same way as the *FieldValue* param in [SetSSHParam](#setsshparam-method-ipworksssh_sshserver-class).

# GetSSHParamBytes Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Reads a field from a Secure Shell (SSH) packet's payload.

## Object Oriented Interface

```text
public function doGetSSHParamBytes($payload, $field);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_getsshparambytes($res, $payload, $field);
```

## Remarks

This method is the same as calling [GetSSHParam](#getsshparam-method-ipworksssh_sshserver-class), but it returns raw bytes instead of strings.

# OpenChannel Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Opens a new SSHChannel .

## Object Oriented Interface

```text
public function doOpenChannel($connectionid, $channeltype);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_openchannel($res, $connectionid, $channeltype);
```

## Remarks

The Secure Shell (SSH) 2.0 specification allows for multiple channels to be opened over a single Transmission Control Protocol (TCP)/IP connection. The Channels property represents the channels that are currently open. A new SSHChannel can be opened with OpenChannel, and data can be sent over it with [SendChannelData](#sendchanneldata-method-ipworksssh_sshserver-class).

*ChannelType* represents the type of Secure Shell (SSH) channel to be opened. The most common type of channel is "session".

If the call to OpenChannel succeeds, an SSHChannel will be created and added to the Channels collection.

# Reset Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This method will reset the class.

## Object Oriented Interface

```text
public function doReset();
```

## Procedural Interface

```text
ipworksssh_sshserver_do_reset($res);
```

## Remarks

This method will reset the class's properties to their default values.

# SendBytes Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Sends binary data to the specified channel.

## Object Oriented Interface

```text
public function doSendBytes($channelid, $data);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_sendbytes($res, $channelid, $data);
```

## Remarks

This method sends binary data to the channel identified by *ChannelId*. To send text, use the [SendText](#sendtext-method-ipworksssh_sshserver-class) method instead.

# SendChannelData Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Sends data over a Secure Shell (SSH) channel.

## Object Oriented Interface

```text
public function doSendChannelData($channelid, $data);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_sendchanneldata($res, $channelid, $data);
```

## Remarks

This method can be used to send arbitrary data to the channel with the specified *ChannelId*.

# SendSSHPacket Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Sends an encoded Secure Shell (SSH) packet to the server.

## Object Oriented Interface

```text
public function doSendSSHPacket($channelid, $packettype, $payload);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_sendsshpacket($res, $channelid, $packettype, $payload);
```

## Remarks

This method can be used to send a previously built SSH payload to the server. *ChannelId* identifies the channel that will receive the packet.

*PacketType* identifies what kind of packet is to be sent. *Payload* should contain the payload of the packet, which can be built by successive calls to [SetSSHParam](#setsshparam-method-ipworksssh_sshserver-class).

When SendSSHPacket is called, the class will finish building the packet, encrypt it for transport, and send it to the server.

# SendText Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Sends text to the specified channel.

## Object Oriented Interface

```text
public function doSendText($channelid, $text);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_sendtext($res, $channelid, $text);
```

## Remarks

This method sends text to the client identified by *ChannelId*. To send binary data, use the [SendBytes](#sendbytes-method-ipworksssh_sshserver-class) method instead.

# SetSSHParam Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Writes a field to the end of a payload.

## Object Oriented Interface

```text
public function doSetSSHParam($payload, $fieldtype, $fieldvalue);
```

## Procedural Interface

```text
ipworksssh_sshserver_do_setsshparam($res, $payload, $fieldtype, $fieldvalue);
```

## Remarks

This method is used to build the payload portion of a Secure Shell (SSH) packet to be sent later by a call to [SendSSHPacket](#sendsshpacket-method-ipworksssh_sshserver-class). *Payload* should contain the result of a previous call to SetSSHParam. *FieldType* is a string defining the type of field to be written to the packet. *FieldValue* should be the string representation of the field to be written.

The following is a list of supported field types and a description of how *FieldValue* should be encoded:

|  |  |
| --- | --- |
| s | A plaintext string containing the default system encoding of the data. |
| sb | A string containing the hex-encoded data (e.g., "A1B23C") |
| m | A variable-length large integer, encoded as a textual representation of the value (e.g., "1234"). |
| i | A 32-bit integer, encoded as a textual representation of the value (e.g., "1234"). |
| l | A 64-bit integer, encoded as a textual representation of the value (e.g., "1234"). |
| b | A single byte, encoded as a textual representation of the value (e.g., "123"). |
| f | A boolean flag, encoded as a textual representation of the value (e.g., 'True' or 'False') |

NOTE: Integer values may be hexadecimal encoded by prefixing "0x" to the beginning of the string; otherwise, the value is assumed to be Base10.

# Shutdown Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This method shuts down the server.

## Object Oriented Interface

```text
public function doShutdown();
```

## Procedural Interface

```text
ipworksssh_sshserver_do_shutdown($res);
```

## Remarks

This method shuts down the server. Calling this method is equivalent to calling [StopListening](#stoplistening-method-ipworksssh_sshserver-class) and then breaking every client connection by calling [Disconnect](#disconnect-method-ipworksssh_sshserver-class).

# StartListening Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This method starts listening for incoming connections.

## Object Oriented Interface

```text
public function doStartListening();
```

## Procedural Interface

```text
ipworksssh_sshserver_do_startlistening($res);
```

## Remarks

This method begins listening for incoming connections on the port specified by [LocalPort](#localport-property-ipworksssh_sshserver-class). Once listening, events will fire as new clients connect and data are transferred.

To stop listening for new connections, call [StopListening](#stoplistening-method-ipworksssh_sshserver-class). To stop listening for new connections and to disconnect all existing clients, call [Shutdown](#shutdown-method-ipworksssh_sshserver-class).

# StopListening Method ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This method stops listening for new connections.

## Object Oriented Interface

```text
public function doStopListening();
```

## Procedural Interface

```text
ipworksssh_sshserver_do_stoplistening($res);
```

## Remarks

This method stops listening for new connections. After being called, any new connection attempts will be rejected. Calling this method does not disconnect existing connections.

To stop listening and to disconnect all existing clients, call [Shutdown](#shutdown-method-ipworksssh_sshserver-class) instead.

# Connected Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired immediately after a connection completes (or fails).

## Object Oriented Interface

```text
public function fireConnected($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 1, array($this, 'fireConnected'));
```

## Parameter List

```text
 'connectionid' 'statuscode' 'description' 'certstoretype' 'certstore' 'certpassword' 'certsubject'
```

## 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 system. *Description* contains a description of this code. The value of *StatusCode* is equal to the value of the system error.

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

*ConnectionId* is the connection Id of the client requesting the connection.

*CertStoreType* is the store type of the alternate certificate to use for this connection. 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 property 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 object and pass cstPKCS11 as the [](#f_StoreType), the full path of the PKCS#11 DLL as the [](#f_Store), and the PIN as the [](#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 [](#f_Store) and set [](#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. |

*CertStore* is the store name or location of the alternate certificate to use for this connection.

 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. |

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).

*CertPassword* is the password of the certificate store containing the alternate certificate to use for this connection.

*CertSubject* is the subject of the alternate certificate to use for this connection.

The special value *** matches any subject and will select the first certificate in the 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.

# ConnectionRequest Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This event is fired when a request for connection comes from a remote host.

## Object Oriented Interface

```text
public function fireConnectionRequest($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 2, array($this, 'fireConnectionRequest'));
```

## Parameter List

```text
 'address' 'port' 'accept'
```

## Remarks

This event indicates an incoming connection. The connection is accepted by default. *Address* and *Port* will contain information about the remote host requesting the inbound connection. If you want to refuse it, you can set the *Accept* parameter to False.

# Disconnected Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

This event is fired when a connection is closed.

## Object Oriented Interface

```text
public function fireDisconnected($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 3, array($this, 'fireDisconnected'));
```

## Parameter List

```text
 'connectionid' 'statuscode' '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 system. *Description* contains a description of this code. The value of *StatusCode* is equal to the value of the system error.

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

# Error Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired when errors occur during data delivery.

## Object Oriented Interface

```text
public function fireError($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 4, array($this, 'fireError'));
```

## Parameter List

```text
 'connectionid' 'errorcode' 'description'
```

## Remarks

The Error event is fired in case of exceptional conditions during message processing. Normally the class fails with an error.

*ConnectionId* 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-sshserver-class) section.

*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-sshserver-class) section.

# Log Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired once for each log message.

## Object Oriented Interface

```text
public function fireLog($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 5, array($this, 'fireLog'));
```

## Parameter List

```text
 'connectionid' 'loglevel' 'message' '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.

*ConnectionId* specifies the connection to which the log message is applicable.

# SSHChannelClosed Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired when a channel is closed.

## Object Oriented Interface

```text
public function fireSSHChannelClosed($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 6, array($this, 'fireSSHChannelClosed'));
```

## Parameter List

```text
 'connectionid' 'channelid'
```

## Remarks

The SSHChannelClosed event is fired when a channel is closed on a Secure Shell (SSH) connection.

*ConnectionId* identifies the connection.

*ChannelId* identifies the channel.

NOTE: Processing long-running requests, including sending channel data, inside this event may cause the underlying transport to stop processing Secure Shell (SSH) data until the event returns. To prevent this from happening, all requests should be processed asynchronously in a separate thread outside of this event.

# SSHChannelDataIn Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired when data are received on a Secure Shell (SSH) channel.

## Object Oriented Interface

```text
public function fireSSHChannelDataIn($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 7, array($this, 'fireSSHChannelDataIn'));
```

## Parameter List

```text
 'connectionid' 'channelid' 'data'
```

## Remarks

Whenever a client sends data to an SSH channel, the SSHChannelDataIn event will fire. *ChannelId* will identify the channel receiving data. *Data* will contain the raw data being received.

*ConnectionId* identifies the connection. *ChannelId* identifies the channel.

NOTE: Processing long-running requests, including sending channel data, inside this event may cause the underlying transport to stop processing Secure Shell (SSH) data until the event returns. To prevent this from happening, all requests should be processed asynchronously in a separate thread outside of this event.

# SSHChannelEOF Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired when the remote peer signals the end of the data stream for the channel.

## Object Oriented Interface

```text
public function fireSSHChannelEOF($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 8, array($this, 'fireSSHChannelEOF'));
```

## Parameter List

```text
 'connectionid' 'channelid'
```

## Remarks

The SSHChannelEOF event is fired when the end of the data stream for a channel on a Secure Shell (SSH) connection is reached.

*ConnectionId* identifies the connection. *ChannelId* identifies the channel.

NOTE: Processing long-running requests, including sending channel data, inside this event may cause the underlying transport to stop processing Secure Shell (SSH) data until the event returns. To prevent this from happening, all requests should be processed asynchronously in a separate thread outside of this event.

# SSHChannelOpened Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired when a channel is successfully opened.

## Object Oriented Interface

```text
public function fireSSHChannelOpened($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 9, array($this, 'fireSSHChannelOpened'));
```

## Parameter List

```text
 'connectionid' 'channelid'
```

## Remarks

The SSHChannelOpened event is fired when a channel is successfully opened on a Secure Shell (SSH) connection.

*ConnectionId* identifies the connection.

*ChannelId* identifies the channel.

NOTE: Processing long-running requests, including sending channel data, inside this event may cause the underlying transport to stop processing Secure Shell (SSH) data until the event returns. To prevent this from happening, all requests should be processed asynchronously in a separate thread outside of this event.

# SSHChannelOpenRequest Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired when a client attempts to open a new channel.

## Object Oriented Interface

```text
public function fireSSHChannelOpenRequest($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 10, array($this, 'fireSSHChannelOpenRequest'));
```

## Parameter List

```text
 'connectionid' 'channelid' 'service' 'parameters' 'accept'
```

## Remarks

This event is fired whenever a client attempts to open a new channel for a given connection.

*ChannelId* will contain the Id of the channel to be created.

*Service* will identify the type of channel that is being requested (e.g., "session").

*Accept* must to be set to True to accept the channel open request.

*ConnectionId* identifies the connection.

*ChannelId* identifies the channel.

If the channel open request contains extra information, it will be contained in *Parameters*; you can extract data from it using [GetSSHParam](#getsshparam-method-ipworksssh_sshserver-class) and [GetSSHParamBytes](#getsshparambytes-method-ipworksssh_sshserver-class). The most common example of a request with parameters would be a request with *Service* set to "direct-tcpip" (for Secure Shell (SSH) tunneling); in that case, *Parameters* will contain the host to connect (string), the port to connect (int), the originator IP address (string), and the originator Transmission Control Protocol (TCP) port (int).

NOTE: Processing long-running requests, including sending channel data, inside this event may cause the underlying transport to stop processing Secure Shell (SSH) data until the event returns. To prevent this from happening, all requests should be processed asynchronously in a separate thread outside of this event.

# SSHChannelReadyToSend Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired when the class is ready to send data.

## Object Oriented Interface

```text
public function fireSSHChannelReadyToSend($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 11, array($this, 'fireSSHChannelReadyToSend'));
```

## Parameter List

```text
 'connectionid' 'channelid'
```

## Remarks

This event fires when data can be sent over the Secure Shell (SSH) channel specified by *ChannelId* for the connection specified by *ConnectionId*.

When a channel is opened, this event will fire once the channel is ready and data can be sent.

When Timeout is set to *0* (asynchronous) sending data may result in an error if the channel or underlying socket cannot accept more data to send. Monitor SSHChannelReadyToSend or [ReadyToSend](#readytosend-property-ipworksssh_sshserver-class) to determine when data can be sent again.

When Timeout is set to a positive value, the class will block when sending data until the data can be successfully sent and SSHChannelReadyToSend and [ReadyToSend](#readytosend-property-ipworksssh_sshserver-class) do not need to be monitored.

# SSHChannelRequest Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired when the client sends a channel request to the SSHHost .

## Object Oriented Interface

```text
public function fireSSHChannelRequest($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 12, array($this, 'fireSSHChannelRequest'));
```

## Parameter List

```text
 'connectionid' 'channelid' 'requesttype' 'packet' 'success'
```

## Remarks

The client may send requests that affect the status of a particular SSHChannel. Some requests will be automatically handled by the class. Others, however, may need the attention of the user to be dealt with properly within the scope of the application.

*ConnectionId* identifies the connection making the request.

*ChannelId* identifies the channel receiving the request.

*Type* will contain the type of the request. These types depend on the type of the channel. For example, a "session" channel executing a command on the remote shell may receive an "exit-status" request containing the return code of that command.

*RequestData* contains the remainder of the original Secure Shell (SSH) packet. If the request type has specific parameters, they can be parsed out of this data.

*Success* should be used to instruct the class to respond to the request with either a success or failure notification. If the request is successful, [SSHChannelRequested](#sshchannelrequested-event-ipworksssh_sshserver-class) will fire with the same information in case the request requires further processing.

NOTE: Processing long-running requests, including sending channel data, inside this event may cause the underlying transport to stop processing Secure Shell (SSH) data until the event returns. To prevent this from happening, all requests should be processed asynchronously in a separate thread outside of this event.

# SSHChannelRequested Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired if the SSHChannelRequest was successful, any further processing for the channel request should be done here.

## Object Oriented Interface

```text
public function fireSSHChannelRequested($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 13, array($this, 'fireSSHChannelRequested'));
```

## Parameter List

```text
 'connectionid' 'channelid' 'requesttype' 'packet'
```

## Remarks

The client may send requests that affect the status of a particular SSHChannel. Some requests will be automatically handled by the class. Others, however, may need the attention of the user to be dealt with properly within the scope of the application.

*ConnectionId* identifies the connection making the request.

*ChannelId* identifies the channel receiving the request.

*Type* will contain the type of the request. These types depend on the type of the channel. For example, a "session" channel executing a command on the remote shell may receive an "exit-status" request containing the return code of that command.

*RequestData* contains the remainder of the original Secure Shell (SSH) packet. If the request type has specific parameters, they can be parsed out of this data.

NOTE: Processing long-running requests, including sending channel data, inside this event may cause the underlying transport to stop processing Secure Shell (SSH) data until the event returns. To prevent this from happening, all requests should be processed asynchronously in a separate thread outside of this event.

# SSHServiceRequest Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired when a client requests a service to be started.

## Object Oriented Interface

```text
public function fireSSHServiceRequest($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 14, array($this, 'fireSSHServiceRequest'));
```

## Parameter List

```text
 'connectionid' 'service' 'accept'
```

## Remarks

The SSHServiceRequest event is fired when a client requests that a service be started for a particular connection, identified by *ConnectionId*. *Service* will be the name of the service the client wishes to start. If the connection is authenticated and the user has access to the service, set *Accept* to True to allow the SSHServer to accept the request.

NOTE: Processing long-running requests, including sending channel data, inside this event may cause the underlying transport to stop processing Secure Shell (SSH) data until the event returns. To prevent this from happening, all requests should be processed asynchronously in a separate thread outside of this event.

# SSHStatus Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired to show the progress of the secure connection.

## Object Oriented Interface

```text
public function fireSSHStatus($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 15, array($this, 'fireSSHStatus'));
```

## Parameter List

```text
 'connectionid' 'message'
```

## Remarks

This event is fired for informational and logging purposes only. It is used to track the progress of the connection.

# SSHTunnelClosed Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired when a connected client attempts to close a tunnel.

## Object Oriented Interface

```text
public function fireSSHTunnelClosed($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 16, array($this, 'fireSSHTunnelClosed'));
```

## Parameter List

```text
 'connectionid' 'address' 'port'
```

## Remarks

This functionality is not yet implemented.

 This event fires when the connected client attempts to close a forward or reverse tunnel.

# SSHTunnelRequested Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired when a connected client attempts to establish a forward or reverse tunnel.

## Object Oriented Interface

```text
public function fireSSHTunnelRequested($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 17, array($this, 'fireSSHTunnelRequested'));
```

## Parameter List

```text
 'connectionid' 'direction' 'address' 'port' 'accept'
```

## Remarks

This functionality is not yet implemented.

 This event fires when the connected client attempts to establish a forward or reverse tunnel. A forward tunnel, after being established, will forward all traffic from the client to a specified hostname and port. A reverse tunnel, after being established, will listen for incoming traffic on the same machine where [SSHServer](#sshserver-class) is running and any data received on that port will be forwarded to the client who requested the reverse tunnel.

# SSHUserAuthRequest Event ([IPWorksSSH_SSHServer](#sshserver-class) Class)

Fired when a client attempts to authenticate a connection.

## Object Oriented Interface

```text
public function fireSSHUserAuthRequest($param);
```

## Procedural Interface

```text
ipworksssh_sshserver_register_callback($res, 18, array($this, 'fireSSHUserAuthRequest'));
```

## Parameter List

```text
 'connectionid' 'user' 'service' 'authmethod' 'authparam' 'accept' 'partialsuccess' 'availablemethods' 'keyalgorithm'
```

## Remarks

The SSHUserAuthRequest event fires when a Secure Shell (SSH) client attempts to authenticate itself on a particular connection. *ConnectionId* will identify the connection being authenticated. *User* will be the name of the account requesting authentication, and *Service* will contain the name of the service the client is wishing to access.

*AuthMethod* will denote which method the client is attempting to use to authenticate itself. *AuthParam* will contain the value of the authentication token used by the client. If the token is acceptable, you may set *Accept* to True to allow the class to authenticate the client. If it is not, set *Accept* to False.

Connecting clients will initially attempt authentication with an *AuthMethod* of "none". This is done with the expectation that the request will fail and the server will send a list of supported methods back to the client. In your implementation, check the *AuthMethod* parameter; if it is "none", you should set *AvailableMethods* and reject the request. The client will select one of the available methods and reauthenticate.

You may set *AvailableMethods* to a comma-delimited string of authentication methods that are available for the user. This list will be sent back to the client so that it may perform further authentication attempts.

The following is a list of methods implemented by the class:

|  |  |
| --- | --- |
| none | This authentication method is used by most Secure Shell (SSH) clients to obtain the list of authentication methods available for the user's account. In most cases, you should not accept a request using this authentication method. |
| password | AuthParam will contain the user-supplied password. If the password is correct, set Accept to True. |
| publickey | AuthParam will contain an SSH2 public key blob. If the user's public key is acceptable, set Accept or PartialSuccess to true. The class will then handle verifying the digital signature and will respond to the client accordingly. |
| keyboard-interactive | SSHUserAuthRequest will fire multiple times for keyboard-interactive authentication: It will fire once for each response sent by the client in the SSH_MSG_USERAUTH_INFO_RESPONSE packet (one time for each prompt specified by the daemon). The index of each response will be specified as a suffix in AuthMethod, with AuthParam containing the response to the corresponding prompt (e.g., keyboard-interactive-1, keyboard-interactive-2, and so on). Finally, SSHUserAuthRequest will fire one last time with AuthMethod set to "keyboard-interactive" and AuthParam set to an empty string. The daemon must set Accept to True every time to allow the authentication process to succeed. |

The *PartialSuccess* parameter is used only when multifactor authentication is needed. To implement multifactor authentication when this event fires, first verify the *AuthParam* for the given *AuthMethod*. If accepted, set *PartialSuccess* to True and *Accept* to False. The client should then send the authentication request for a different form of authentication specified in *AvailableMethods*. You may continue to set *PartialSuccess* to True until all authentication requirements are satisfied. Once all requirements are satisfied set *Accept* to True.

*KeyAlgorithm* holds the signing algorithm used when the client attempts public key authentication. Possible values are as follows:

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

NOTE: Processing long-running requests, including sending channel data, inside this event may cause the underlying transport to stop processing Secure Shell (SSH) data until the event returns. To prevent this from happening, all requests should be processed asynchronously in a separate thread outside of this event.

# Config Settings ([SSHServer](#sshserver-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-ipworksssh_sshserver-class) method.

### SSHServer Config Settings

**AltSSHCertCount**: The number of records in the AltSSHCert configuration settings.This configuration setting controls the size of the following arrays:

- [AltSSHCertStore](#AltSSHCertStore)
- [AltSSHCertStorePassword](#AltSSHCertStorePassword)
- [AltSSHCertStoreType](#AltSSHCertStoreType)
- [AltSSHCertSubject](#AltSSHCertSubject)

The array indices start at *0* and end at *AltSSHCertCount - 1*.

The AltSSHCert configuration settings are used to specify alternative digital certificates to the one set using the SSHCert. The server will determine the certificate to use during Secure Shell (SSH) negotiation based on the public key algorithm requested by the connecting client. A certificate with a private key is required for session authentication and encryption. The [AltSSHCertSubject](#AltSSHCertSubject) setting must be set last. When [AltSSHCertSubject](#AltSSHCertSubject) is set, a search is initiated in the [AltSSHCertStore](#AltSSHCertStore) and the certificate is loaded.

The alternative server certificate specified by these settings must be configured before setting [Listening](#listening-property-ipworksssh_sshserver-class) to *true*. For example:

```csharp
sftpserver.Config("AltSSHCertCount =1");
sftpserver.Config("AltSSHCertStoreType[0]=7");           //PEM Key Blob
sftpserver.Config("AltSSHCertStore[0]=" + ed25519Key);   //PEM formatted string
sftpserver.Config("AltSSHCertSubject[0]=*");             //Load the first (and only) certificate
```

**AltSSHCertStore[i]**: The name of the certificate store.The name of the certificate store. This configuration setting is used when specifying an alternative SSHCert.

The [AltSSHCertStoreType](#AltSSHCertStoreType) specifies the type of the certificate store specified by [AltSSHCertStore](#AltSSHCertStore). If the store is password protected, specify the password in the [AltSSHCertStorePassword](#AltSSHCertStorePassword).

[AltSSHCertStore](#AltSSHCertStore) is used in conjunction with the [AltSSHCertSubject](#AltSSHCertSubject) field to specify the certificate.

 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. |

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).

**AltSSHCertStorePassword[i]**: The password used to open the certificate store.If the certificate store requires a password, this configuration setting can be used to specify that password. This setting is used when specifying an alternative SSHCert

**AltSSHCertStoreType[i]**: The type of certificate store.This configuration setting specifies the type of certificate store. This setting is used when specifying an alternate SSHCert. Possible values are as follows:

|  |  |
| --- | --- |
| 0 | User - This is the 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 | Machine - For Windows, this specifies that the certificate store is a machine store. NOTE: This store type is not available in Java. |
| 2 | PFXFile - The certificate store is the name of a PFX (PKCS12) file containing certificates. |
| 3 | PFXBlob - The certificate store is a string (binary or Base64-encoded) representing a certificate store in PFX (PKCS12) format. |
| 4 | JKSFile - The certificate store is the name of a Java Key Store (JKS) file containing certificates. NOTE: This store type is available only in Java. |
| 5 | JKSBlob - 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 available only in Java. |
| 6 | PEMKeyFile - The certificate store is the name of a PEM-encoded file that contains a private key and an optional certificate. |
| 7 | PEMKeyBlob - The certificate store is a string (binary or Base64-encoded) that contains a private key and an optional certificate. |
| 14 | PPKFile - The certificate store is the name of a file that contains a PPK (PuTTY Private Key). |
| 15 | PPKBlob - The certificate store is a string (binary) that contains a PPK (PuTTY Private Key). |
| 16 | XMLFile - The certificate store is the name of a file that contains a certificate in XML format. |
| 17 | XMLBlob - The certificate store is a string that contains a certificate in XML format. |

**AltSSHCertSubject[i]**: The alternative certificate subject.The subject of the certificate. This configuration setting is used when specifying an alternative SSHCert. The special value of *** may be used to select the first certificate in the store.

**ClientSSHVersionString[ConnectionId]**: The client's version string.This configuration setting returns a connected client's SSH version string. It may be queried inside [SSHUserAuthRequest](#sshuserauthrequest-event-ipworksssh_sshserver-class).

```csharp
sftpserver1.OnSSHUserAuthRequest += (obj, ev) =>
{
  Console.WriteLine(sftpserver1.Config("ClientSSHVersionString[" + ev.ConnectionId + "]"));
};
```

**FireAuthRequestAfterSig**: Whether to fire an informational event after the public key signature has been verified.When performing public key authentication, the connecting client will present both the public key as well as a signature to verify ownership of the corresponding private key. The class will automatically verify the signature and respond to the client to indicate whether the signature could be verified and the connection can continue. This configuration setting controls whether an additional informational event fires to report the result of the signature verification.

If set to *true*, the [SSHUserAuthRequest](#sshuserauthrequest-event-ipworksssh_sshserver-class) event will fire twice per public key authentication attempt. The first time the event fires for public key authentication as usual. After verification of the signature has taken place, the [SSHUserAuthRequest](#sshuserauthrequest-event-ipworksssh_sshserver-class) will fire again, and the *AuthMethod* parameter will contain the string *sigstatus*. The *AuthParam* parameter will contain a value of *0* (invalid signature) or *1* (valid signature). If the signature is invalid, it will always result in a rejected authentication attempt.

**KeyboardInteractivePrompts[ConnectionId]**: Specifies custom keyboard-interactive prompts for particular connections.By default, setting the KeyboardInteractivePrompts property will cause those prompts to be used for every user attempting to connect. This setting can be used to override the KeyboardInteractivePrompts property and provide unique prompts for certain connections.

This configuration setting takes a list of prompts to display to the client, and each prompt includes an 'echo' parameter to specify whether or not to echo the client's response to the prompt. The prompt and the echo parameter should be separated by a comma (","), and each prompt should be separated by a semicolon (";"). For example:

"KeyboardInteractivePrompts[connId]=First prompt,echo=false;Second prompt,echo=true"

This configuration setting can be set anywhere in code, but it is necessary to know the ConnectionId for the specific connection beforehand; as such, it is generally recommended to set this configuration inside the [SSHUserAuthRequest](#sshuserauthrequest-event-ipworksssh_sshserver-class) event. Because connecting clients initially attempt to connect with and *AuthMethod* of 'none' (with the understanding that this attempt will fail, and the SSH server will advertise which authentication methods it supports), it is recommended to check the *AuthMethod*, *User*, and *ConnectionId* parameters of the [SSHUserAuthRequest](#sshuserauthrequest-event-ipworksssh_sshserver-class) event and set this configuration setting accordingly.

When SSHServer displays keyboard-interactive prompts, it will first check to see if this configuration setting is populated for the current ConnectionId. If it is, the prompts set here will be used instead of those set in the KeyboardInteractivePrompts property. Otherwise, the KeyboardInteractivePrompts property will function as normal.

**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-ipworksssh_sshserver-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. |

**MaxAuthAttempts**: The maximum authentication attempts allowed before forcing a disconnect.This configuration setting specifies the maximum amount of authentication attempts that will be allowed before forcibly disconnecting the client.

**NegotiatedStrictKex[ConnectionId]**: Returns whether strict key exchange was negotiated to be used.Returns whether strict key exchange (strict kex) was negotiated during the SSH handshake. This is a per-connection configuration setting accessed by passing the ConnectionId. 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[connId]")
```

**ServerSSHVersionString**: The SSH version string sent to connecting clients.This configuration setting specifies the version string value that is sent to all connecting clients. This may be set to specify server specific information. The default value is "SSH-2.0-IPWorks SSH Daemon 2024". When setting your own value, it must begin with "SSH-2.0-" because this is a standard format that specifies the supported SSH version.

**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*.

**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 allowed signature algorithms used by a client performing public key authentication.This configuration setting specifies a list of signature algorithms that a client is allowed to use when authenticating to the server using public key authentication. This applies only when public key authentication is performed by the client.

The configuration setting should be a comma-separated list of algorithms. When a client connects, the server will verify that the client performing the public key authentication has used one of the specified signature algorithms. If the client uses a signature algorithm that is not in the list, the connection will be rejected.

Possible values areas 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,x509v3-sign-rsa,ssh-dss,x509v3-sign-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,ssh-ed25519*.

**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-*
```

**UserAuthBanner[ConnectionId]**: A custom user authentication banner.This configuration setting specifies a custom user authentication banner, which may be sent to give the client more information regarding an authentication attempt. "ConnectionId" specifies the particular connection to send the message to. This configuration option is effective only when set within the [SSHUserAuthRequest](#sshuserauthrequest-event-ipworksssh_sshserver-class) event.

**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. |

### TCPServer Config Settings

**AllowedClients**: A comma-separated list of host names or IP addresses that can access the class.This configuration setting defines a comma-separated list of host names or IPv4 addresses that may access the class. The wildcard character "*" is supported. The default value is "*" and all connections are accepted.

When a client connects, the client's address is checked against the list defined here. If there is no match, the [ConnectionRequest](#connectionrequest-event-ipworksssh_sshserver-class) event fires with an *Accept* value set to *false*. If no action is taken within the [ConnectionRequest](#connectionrequest-event-ipworksssh_sshserver-class) event, the client will be disconnected.

**BindExclusively**: Whether or not the component considers a local port reserved for exclusive use.If this is *true* (default), the component will bind to the local port with the ExclusiveAddressUse option set, meaning that nothing else can bind to the same port. Also the component will not be able to bind to local ports that are already in use by some other instance, and attempts to do so will result in failure.

**BlockedClients**: A comma-separated list of host names or IP addresses that cannot access the class.This configuration setting defines a comma-separated list of host names or IPv4 addresses that cannot access the class.The default value is "" and all connections are accepted.

When a client connects, the client's address is checked against the list defined here. If there is a match, the [ConnectionRequest](#connectionrequest-event-ipworksssh_sshserver-class) event fires with an *Accept* value set to *false*. If no action is taken within the [ConnectionRequest](#connectionrequest-event-ipworksssh_sshserver-class) event, the client will not be connected.

**ConnectionUID**: The unique connectionId for a connection.Connection Ids may be reused as clients connect and disconnect. Querying ConnectionUID will return a unique identifier for that connection Id. If the specified connection Id does not exist, then ConnectionUID will return 0. For example:

*Connection5UID = obj.config("ConnectionUID[5]")*

**DefaultConnectionTimeout**: The inactivity timeout applied to the SSL handshake.This configuration setting specifies the inactivity (in seconds) to apply to incoming Secure Sockets Layer (SSL) connections. When set to a positive value, if the other end is unresponsive for the specified number of seconds, the connection will timeout. This is not applicable to the entire handshake. It is applicable only to the inactivity of the connecting client during the handshake if a response is expected and none is received within the timeout window. The default value is 0, and no connection-specific timeout is applied.

NOTE: This is applicable only to incoming SSL connections. This should be set only if there is a specific reason to do so.

**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. Increasing the value of the [InBufferSize](#InBufferSize) setting can provide significant improvements in performance in some cases.

Some TCP/IP implementations do not support variable buffer sizes. If that is the case, when the class is activated, the [InBufferSize](#InBufferSize) reverts to its defined size. The same thing will happen if you attempt to make it too large or too small.

[InBufferSize](#InBufferSize) is shared among incoming connections. When the setting is set, the corresponding value is set for incoming connections as they are accepted. Existing connections are not modified.

**KeepAliveInterval**: The retry interval, in milliseconds, to be used when a TCP keep-alive packet is sent and no response is received.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 setting specifies the interval at which the successive keep-alive packets are sent in milliseconds. If this value is not specified here, the system default is 1 second. This setting is applicable to all connections.

NOTE: This value is not applicable in macOS.

**KeepAliveRetryCount**: The number of keep-alive packets to be sent before the remotehost is considered disconnected.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 setting specifies the number of times that the keep-alive packets will be sent again before the remote host is considered disconnected. If this value is not specified here, the system default is 9.

NOTE: This configuration setting is available only in the Unix platform, and it is not supported in macOS or FreeBSD.

**KeepAliveTime**: The inactivity time in milliseconds before a TCP keep-alive packet is sent.By default, the operating system will determine the time a connection is idle before a TCP keep-alive packet is sent. If this value is not specified here, the system default is 2 hours. In many cases, a shorter interval is more useful. Set this value to the desired interval in milliseconds. This setting is applicable to all connections.

**MaxConnections**: The maximum number of connections available. This is the maximum number of connections available. This setting must be set before [Listening](#listening-property-ipworksssh_sshserver-class) is set to *true*, and once set, it can no longer be changed for the current instance of the class. The maximum value for this setting is 100,000 connections. Use this setting with caution. Extremely large values may affect performance. The default value is 1000.

NOTE: Unix/Linux operating systems limit the number of simultaneous connections to 1024.

**MaxReadTime**: The maximum time spent reading data from each connection.This setting specifies the maximum time in milliseconds that the class will spend reading data from a particular connection before servicing other connections. When a single client is sending data to the class at a high rate this setting is used to ensure that other connections are serviced in a timely manner. Specifying a positive value prevents a single client from monopolizing the class's resources. The special value of *0* indicates no limit and is generally not recommended.

The default value is *50* (milliseconds).

**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. Increasing the value of the [OutBufferSize](#OutBufferSize) setting can provide significant improvements in performance in some cases.

Some TCP/IP implementations do not support variable buffer sizes. If that is the case, when the class is activated the [OutBufferSize](#OutBufferSize) reverts to its defined size. The same thing will happen if you attempt to make it too large or too small.

[OutBufferSize](#OutBufferSize) is shared among incoming connections. When the setting is set, the corresponding value is set for incoming connections as they are accepted. Existing connections are not modified.

**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.

**UseIOCP**: Whether to use the completion port I/O model.The default value is *false*. When set to *true*, the class will use an I/O Completion Port (IOCP) to manage operations on sockets. A single completion port allows the asynchronous notification of network events on an entire group of sockets. This setting must be set before [Listening](#listening-property-ipworksssh_sshserver-class) is set to *true*.

Nothing else is required to begin accepting IOCP connections. One major benefit to using this model is that there will be no thread blocked waiting for a request to complete. The system notifies the process through an Asynchronous Procedure Call (APC) once the device driver finishes servicing the I/O request. IOCP allows a single I/O worker thread handle multiple clients' input/output "fairly".

NOTE: When set to *true*, this setting will automatically set [UseWindowsMessages](#UseWindowsMessages) 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. When set to 2, the class will listen for both IPv4 and IPv6 connections. If IPv6 is not available on the system, only IPv4 will be used. The default value is 0. Possible values are as follows:

|  |  |
| --- | --- |
| 0 | IPv4 Only |
| 1 | IPv6 Only |
| 2 | IPv6 and IPv4 |

**UseWindowsMessages**: Whether to use the WSAAsyncSelect I/O model.The default value is *true*, and the class will receive a Windows message-based notification of network events. Turning on Windows message notifications allows the application to get connect, send, receive, and socket closure network event notifications on a socket. This setting must be set before [Listening](#listening-property-ipworksssh_sshserver-class) is set to *true*.

Nothing else is required to begin accepting connections using the Windows message queue. In high-traffic environments, messages will be discarded if the queue is full. Additionally, because a single window procedure will service all events on thousands of sockets, the Windows message queue is not scalable from a performance perspective.

If this setting is set to *false*, the class will instead use the Winsock *select* model instead.

### 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.

**CodePage**: The system code page used for Unicode to Multibyte translations.The default code page is Unicode UTF-8 (65001).

The following is a list of valid code page identifiers:

|  |  |
| --- | --- |
| Identifier | Name |
| 037 | IBM EBCDIC - U.S./Canada |
| 437 | OEM - United States |
| 500 | IBM EBCDIC - International |
| 708 | Arabic - ASMO 708 |
| 709 | Arabic - ASMO 449+, BCON V4 |
| 710 | Arabic - Transparent Arabic |
| 720 | Arabic - Transparent ASMO |
| 737 | OEM - Greek (formerly 437G) |
| 775 | OEM - Baltic |
| 850 | OEM - Multilingual Latin I |
| 852 | OEM - Latin II |
| 855 | OEM - Cyrillic (primarily Russian) |
| 857 | OEM - Turkish |
| 858 | OEM - Multilingual Latin I + Euro symbol |
| 860 | OEM - Portuguese |
| 861 | OEM - Icelandic |
| 862 | OEM - Hebrew |
| 863 | OEM - Canadian-French |
| 864 | OEM - Arabic |
| 865 | OEM - Nordic |
| 866 | OEM - Russian |
| 869 | OEM - Modern Greek |
| 870 | IBM EBCDIC - Multilingual/ROECE (Latin-2) |
| 874 | ANSI/OEM - Thai (same as 28605, ISO 8859-15) |
| 875 | IBM EBCDIC - Modern Greek |
| 932 | ANSI/OEM - Japanese, Shift-JIS |
| 936 | ANSI/OEM - Simplified Chinese (PRC, Singapore) |
| 949 | ANSI/OEM - Korean (Unified Hangul Code) |
| 950 | ANSI/OEM - Traditional Chinese (Taiwan; Hong Kong SAR, PRC) |
| 1026 | IBM EBCDIC - Turkish (Latin-5) |
| 1047 | IBM EBCDIC - Latin 1/Open System |
| 1140 | IBM EBCDIC - U.S./Canada (037 + Euro symbol) |
| 1141 | IBM EBCDIC - Germany (20273 + Euro symbol) |
| 1142 | IBM EBCDIC - Denmark/Norway (20277 + Euro symbol) |
| 1143 | IBM EBCDIC - Finland/Sweden (20278 + Euro symbol) |
| 1144 | IBM EBCDIC - Italy (20280 + Euro symbol) |
| 1145 | IBM EBCDIC - Latin America/Spain (20284 + Euro symbol) |
| 1146 | IBM EBCDIC - United Kingdom (20285 + Euro symbol) |
| 1147 | IBM EBCDIC - France (20297 + Euro symbol) |
| 1148 | IBM EBCDIC - International (500 + Euro symbol) |
| 1149 | IBM EBCDIC - Icelandic (20871 + Euro symbol) |
| 1200 | Unicode UCS-2 Little-Endian (BMP of ISO 10646) |
| 1201 | Unicode UCS-2 Big-Endian |
| 1250 | ANSI - Central European |
| 1251 | ANSI - Cyrillic |
| 1252 | ANSI - Latin I |
| 1253 | ANSI - Greek |
| 1254 | ANSI - Turkish |
| 1255 | ANSI - Hebrew |
| 1256 | ANSI - Arabic |
| 1257 | ANSI - Baltic |
| 1258 | ANSI/OEM - Vietnamese |
| 1361 | Korean (Johab) |
| 10000 | MAC - Roman |
| 10001 | MAC - Japanese |
| 10002 | MAC - Traditional Chinese (Big5) |
| 10003 | MAC - Korean |
| 10004 | MAC - Arabic |
| 10005 | MAC - Hebrew |
| 10006 | MAC - Greek I |
| 10007 | MAC - Cyrillic |
| 10008 | MAC - Simplified Chinese (GB 2312) |
| 10010 | MAC - Romania |
| 10017 | MAC - Ukraine |
| 10021 | MAC - Thai |
| 10029 | MAC - Latin II |
| 10079 | MAC - Icelandic |
| 10081 | MAC - Turkish |
| 10082 | MAC - Croatia |
| 12000 | Unicode UCS-4 Little-Endian |
| 12001 | Unicode UCS-4 Big-Endian |
| 20000 | CNS - Taiwan |
| 20001 | TCA - Taiwan |
| 20002 | Eten - Taiwan |
| 20003 | IBM5550 - Taiwan |
| 20004 | TeleText - Taiwan |
| 20005 | Wang - Taiwan |
| 20105 | IA5 IRV International Alphabet No. 5 (7-bit) |
| 20106 | IA5 German (7-bit) |
| 20107 | IA5 Swedish (7-bit) |
| 20108 | IA5 Norwegian (7-bit) |
| 20127 | US-ASCII (7-bit) |
| 20261 | T.61 |
| 20269 | ISO 6937 Non-Spacing Accent |
| 20273 | IBM EBCDIC - Germany |
| 20277 | IBM EBCDIC - Denmark/Norway |
| 20278 | IBM EBCDIC - Finland/Sweden |
| 20280 | IBM EBCDIC - Italy |
| 20284 | IBM EBCDIC - Latin America/Spain |
| 20285 | IBM EBCDIC - United Kingdom |
| 20290 | IBM EBCDIC - Japanese Katakana Extended |
| 20297 | IBM EBCDIC - France |
| 20420 | IBM EBCDIC - Arabic |
| 20423 | IBM EBCDIC - Greek |
| 20424 | IBM EBCDIC - Hebrew |
| 20833 | IBM EBCDIC - Korean Extended |
| 20838 | IBM EBCDIC - Thai |
| 20866 | Russian - KOI8-R |
| 20871 | IBM EBCDIC - Icelandic |
| 20880 | IBM EBCDIC - Cyrillic (Russian) |
| 20905 | IBM EBCDIC - Turkish |
| 20924 | IBM EBCDIC - Latin-1/Open System (1047 + Euro symbol) |
| 20932 | JIS X 0208-1990 & 0121-1990 |
| 20936 | Simplified Chinese (GB2312) |
| 21025 | IBM EBCDIC - Cyrillic (Serbian, Bulgarian) |
| 21027 | Extended Alpha Lowercase |
| 21866 | Ukrainian (KOI8-U) |
| 28591 | ISO 8859-1 Latin I |
| 28592 | ISO 8859-2 Central Europe |
| 28593 | ISO 8859-3 Latin 3 |
| 28594 | ISO 8859-4 Baltic |
| 28595 | ISO 8859-5 Cyrillic |
| 28596 | ISO 8859-6 Arabic |
| 28597 | ISO 8859-7 Greek |
| 28598 | ISO 8859-8 Hebrew |
| 28599 | ISO 8859-9 Latin 5 |
| 28605 | ISO 8859-15 Latin 9 |
| 29001 | Europa 3 |
| 38598 | ISO 8859-8 Hebrew |
| 50220 | ISO 2022 Japanese with no halfwidth Katakana |
| 50221 | ISO 2022 Japanese with halfwidth Katakana |
| 50222 | ISO 2022 Japanese JIS X 0201-1989 |
| 50225 | ISO 2022 Korean |
| 50227 | ISO 2022 Simplified Chinese |
| 50229 | ISO 2022 Traditional Chinese |
| 50930 | Japanese (Katakana) Extended |
| 50931 | US/Canada and Japanese |
| 50933 | Korean Extended and Korean |
| 50935 | Simplified Chinese Extended and Simplified Chinese |
| 50936 | Simplified Chinese |
| 50937 | US/Canada and Traditional Chinese |
| 50939 | Japanese (Latin) Extended and Japanese |
| 51932 | EUC - Japanese |
| 51936 | EUC - Simplified Chinese |
| 51949 | EUC - Korean |
| 51950 | EUC - Traditional Chinese |
| 52936 | HZ-GB2312 Simplified Chinese |
| 54936 | Windows XP: GB18030 Simplified Chinese (4 Byte) |
| 57002 | ISCII Devanagari |
| 57003 | ISCII Bengali |
| 57004 | ISCII Tamil |
| 57005 | ISCII Telugu |
| 57006 | ISCII Assamese |
| 57007 | ISCII Oriya |
| 57008 | ISCII Kannada |
| 57009 | ISCII Malayalam |
| 57010 | ISCII Gujarati |
| 57011 | ISCII Punjabi |
| 65000 | Unicode UTF-7 |
| 65001 | Unicode UTF-8 |

 The following is a list of valid code page identifiers for Mac OS only:

|  |  |
| --- | --- |
| Identifier | Name |
| 1 | ASCII |
| 2 | NEXTSTEP |
| 3 | JapaneseEUC |
| 4 | UTF8 |
| 5 | ISOLatin1 |
| 6 | Symbol |
| 7 | NonLossyASCII |
| 8 | ShiftJIS |
| 9 | ISOLatin2 |
| 10 | Unicode |
| 11 | WindowsCP1251 |
| 12 | WindowsCP1252 |
| 13 | WindowsCP1253 |
| 14 | WindowsCP1254 |
| 15 | WindowsCP1250 |
| 21 | ISO2022JP |
| 30 | MacOSRoman |
| 10 | UTF16String |
| 0x90000100 | UTF16BigEndian |
| 0x94000100 | UTF16LittleEndian |
| 0x8c000100 | UTF32String |
| 0x98000100 | UTF32BigEndian |
| 0x9c000100 | UTF32LittleEndian |
| 65536 | Proprietary |

**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*.

**ProcessIdleEvents**: Whether the class uses its internal event loop to process events when the main thread is idle.If set to False, the class will not fire internal idle events. Set this to False to use the class in a background thread on Mac OS. By default, this setting is True.

**SelectWaitMillis**: The length of time in milliseconds the class will wait when DoEvents is called if there are no events to process.If there are no events to process when [DoEvents](#doevents-method-ipworksssh_sshserver-class) is called, the class will wait for the amount of time specified here before returning. The default value is 20.

**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.

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: This setting is applicable only on Windows.

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.

 On Windows, this setting is set to *false* by default. On Linux/macOS, this setting is set to *true* by default.

 To use the system security libraries for Linux, OpenSSL support must be enabled. For more information on how to enable OpenSSL, please refer to the [OpenSSL Notes](platforms.md) section.

# Trappable Errors ([SSHServer](#sshserver-class) Class)

### SSHServer Errors

|  |  |
| --- | --- |
| 1201 | Could not forward connection. A detailed message follows. |
| 1202 | Could not forward connection/channel data. A detailed message follows. |
| 1300 | Could not authenticate client. |
| 1301 | No server certificate was specified or no private key found. |

### TCPServer Errors

|  |  |
| --- | --- |
| 100 | You cannot change the RemotePort at this time. A connection is in progress. |
| 101 | You cannot change the RemoteHost at this time. A connection is in progress. |
| 102 | The RemoteHost address is invalid (0.0.0.0). |
| 104 | TCPServer is already listening. |
| 106 | Cannot change [LocalPort](#localport-property-ipworksssh_sshserver-class) when TCPServer is listening. |
| 107 | Cannot change [LocalHost](#localhost-property-ipworksssh_sshserver-class) when TCPServer is listening. |
| 108 | Cannot change [MaxConnections](#MaxConnections) when TCPServer is listening. |
| 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. |
| 126 | Invalid ConnectionId. |
| 135 | Operation would block. |

### 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). |
