Hello
I´m developing with delphi 10.2.3 and I need to connect to sftp site with a privateKey
The source code it´s very simple.
I have only assigned this parameters
FtpClient1.HostName := 'sftp.....';
FtpClient1.Port := 'port';
FtpClient1.UserName := 'user';
SslContext1.SslPrivKeyFile := 'PrivateKeyProd.ppk';
if FtpClient1.Connect then
Display('Command Success');
else
Display('Command Failure');
I have also dll requerid
libcrypto-1_1.dll
libssl-1_1.dll
But I only received this mistake (see attached image)
It is possible to connect via SFTP??
Thanks