Re: wodSFTP.NET: Problems with PrivateKey (General questions)
Hi Mike,
I see you're using a very old version of wodSFTP.Net. Please download a newer version or request an update from http://www.weonlydo.com/index.asp?update=1 (if you're are our customer). The current release is 3.0.6.38.
I Authenticated successfully using the following code:
---------------------------------------------
Dim WithEvents sftp1 As WeOnlyDo.Client.SFTP
Dim key As WeOnlyDo.Security.Cryptography.KeyManager
sftp1 = New WeOnlyDo.Client.SFTP
key = New WeOnlyDo.Security.Cryptography.KeyManager
key.Load( C:RSAPrivatekey.txt , your_password )
sftp1.PrivateKey = key.PrivateKey(WeOnlyDo.Security.Cryptography.SSHKeyTypes.RSAKey)
sftp1.Blocking = True
sftp1.Authentication = WeOnlyDo.Client.SFTP.Authentications.PublicKey
sftp1.Hostname = linux.weonlydo.com
sftp1.Login = test
sftp1.Connect()
---------------------------------------------
If you Fail to authenticate with your server with new version and code similiar to mine, please contact us at techsupport@weonlydo.com
Regards,
Damba
Complete thread:
- wodSFTP.NET: Problems with PrivateKey - mfleisch, 2006-09-21, 09:59
- Re: wodSFTP.NET: Problems with PrivateKey - wodDamir, 2006-09-21, 11:09