Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 'SayHello' method to 'Session' class to get Host key without authentication #1075

Closed
wants to merge 2 commits into from

Conversation

omidmohajers
Copy link

Add 'SayHello' method to 'Session' class to get Host key without authentication

@Rob-Hague
Copy link
Collaborator

Thanks. I'll close this as undesired since it is already possible outside of the library:

public static string SayHello(string host)
{
    string hostKey = null;

    using (SshClient sftpClient = new(host, "username", "password"))
    {
        sftpClient.HostKeyReceived += (sender, args) =>
        {
            hostKey = args.FingerPrintSHA256;
        };

        try
        {
            sftpClient.Connect();
        }
        catch (SshAuthenticationException)
        {
            // This is expected.
        }
    }

    return hostKey;
}

@Rob-Hague Rob-Hague closed this May 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants