Failed to user Key authentication for SFTP (wodSFTP / wodSFTP.NET / wodSFTPdll)
Hi Tom,
I just checked, key is loaded ok.
But I think this line
PrivateKey := k.ToXmlString(RSAkey, true);
causes issue. Can you do something like
Sftp1.PrivateKey = k
or k.DefaultInterface() or something like that, I don't remember exact line for Delphi. PrivateKey will not accept XML, but will accept reference to wodKeys or raw data in some cases.
Jasmine.
Hi Jasmine,
Issue has been solved by used sftp.PrivateKey := k.DefaultInterface;
Thanks very much!
Have a nice day!
TOM