From 65dc4f1186a20718046471d1d5339afff3ec7933 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Sat, 1 May 2010 16:52:46 +0200 Subject: Match hashed [host]:port format knownhosts --- libssh/keyfiles.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libssh') diff --git a/libssh/keyfiles.c b/libssh/keyfiles.c index 74ec7ad..6a687c5 100644 --- a/libssh/keyfiles.c +++ b/libssh/keyfiles.c @@ -1642,6 +1642,9 @@ int ssh_is_server_known(ssh_session session) { if (match == 0) { match = match_hostname(host, tokens[0], strlen(tokens[0])); } + if (match == 0) { + match = match_hashed_host(session, hostport, tokens[0]); + } if (match) { /* We got a match. Now check the key type */ if (strcmp(session->current_crypto->server_pubkey_type, type) != 0) { -- cgit v1.2.3