Our Products:   CompleteFTP  edtFTPnet/Free  edtFTPnet/PRO  edtFTPj/Free  edtFTPj/PRO
0 votes
4.8k views
in .NET FTP by (120 points)
I've just started to evaluat edtftpPro as a tool to connect to an F-Secure SFTP server site.

When attempting to access the site with either username/password or keys, I receive the error "Server does not support hmac-sha1 for mac".

Is there somewhere I can what hashing algorithm to use?
Error:
EnterpriseDT.Net.Ftp.Ssh.SFTPException: Server does not support hmac-sha1 for mac
   at EnterpriseDT.Net.Ftp.Ssh.SSHFTPClient.Connect()
   at EnterpriseDT.Net.Ftp.SecureFTPConnection.Connect()




        Dim sReturn As String = String.Empty
        Try
            ' Instantiate SecureFTPConnection
            Dim ftpConnection As New SecureFTPConnection

            With ftpConnection
                ' set the license
                .LicenseOwner = "trialuser"
                .LicenseKey = "816-6818-2723-6500"
                .Protocol = FileTransferProtocol.SFTP
                '' setting server address and credentials
                .ServerAddress = serverAddress
                .ServerPort = serverPort
                .ServerValidation = SecureFTPServerValidationType.AutomaticNoNameCheck
                .KnownHosts.AddKnownHost("xxx", "C:\Data\AAAAKeyFiles\hostkeys\key_xxx.pub")
                .UserName = userName
                ' set the client's private key
                .ClientPrivateKeyFile = "C:\Data\AAAAKeyFiles\userkeys\id_dsa_2048_a"
                .Password = ""
            End With

            sReturn = "Connecting to server " & serverAddress + vbCrLf
            ftpConnection.Connect()
            sReturn += "Working directory is " & ftpConnection.ServerDirectory
            ftpConnection.Close()
        Catch ex As Exception
            sReturn += "Error: " + vbCrLf + ex.ToString
        End Try
        Return sReturn

2 Answers

0 votes
by (162k points)
Could you enable and email us the log file please, support at enterprisedt dot com.
0 votes
by (162k points)
A belated followup - fixed in 5.0.2

Categories

...