Description
-
Fires when wodSSHTunnel provides information about the
selected algorithms.
Syntax
-
Private Sub
object_CryptoInformation(Protocol,
RemoteName, SCcipher, CScipher,
Keys, Accept)
The CryptoInformation Event syntax has these parts:
| object |
A wodTunnel
object. |
| Protocol |
A String value. Holds the
selected protocol (SSH1/SSH2). |
|
RemoteName |
A String value. Holds
identification text sent by the remote side. |
| SCcipher |
A String value.
Server to client encryption algorithm. |
| CScipher |
A String value.
Client to server encryption algorithm. |
| Keys |
A String value. Key
exchange algorithm selected. |
| Accept |
A Boolean value. When
set to False, wodSSHTunnel aborts the
connection. |
Remarks
-
The CryptoInformation event is fired after the first crypto
negotiation has taken place, but before any sensitive
information is sent to the server (such as username or
password).
This event provides you with information about the selected
encryption protocols and the remote server type. At this point
you can decide whether to continue with the connection
or to abort it (by setting the Accept parameter to False) in which
case wodSSHTunnel will drop the connection.
|