Description
-
Fires before wodSFTP establishes an encrypted connection
with the server.
Return Type
-
None
Syntax
-
object.CryptoInformation Owner,
Protocol, RemoteName, SCcipher,
CScipher, Keys, Accept
The CryptoInformation Method syntax has these parts:
| object |
An expression
evaluating to an object of type IwodSFTPNotify. |
| Owner |
A wodSFTPCom object. |
| Protocol |
A String value.
Specifies selected protocol (SSH2 is the only
possibility in SFTP protocol). |
|
RemoteName |
A String value. Holds the
remote identification string. |
| SCcipher |
A String value. Holds the selected
server to client encryption algorithm. |
| CScipher |
A String value. Holds the selected
client to server encryption algorithm. |
| Keys |
A String value. Holds
key exchange algorithm selected. |
| Accept |
A Boolean value. When
set to False, wodSFTP aborts connection. |
Remarks
-
This method is only called if you implemented the
IwodSFTPNotify interface in your application and the
wodSFTP.Notification
property has received a reference to an instance of your
implementation.
The CryptoInformation notification method is called after
the first crypto negotiation has taken place, but before
any sensitive information is sent to server (such as
username or password). This notification 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 wodSFTP will drop the connection.
|