summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/sshd.c b/sshd.c
index 86b3c643b..81a9b8245 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshd.c,v 1.453 2015/07/03 03:49:45 djm Exp $ */ 1/* $OpenBSD: sshd.c,v 1.454 2015/07/10 06:21:53 markus Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -95,6 +95,7 @@
95#include "log.h" 95#include "log.h"
96#include "buffer.h" 96#include "buffer.h"
97#include "misc.h" 97#include "misc.h"
98#include "match.h"
98#include "servconf.h" 99#include "servconf.h"
99#include "uidswap.h" 100#include "uidswap.h"
100#include "compat.h" 101#include "compat.h"
@@ -799,6 +800,13 @@ list_hostkey_types(void)
799 key = sensitive_data.host_pubkeys[i]; 800 key = sensitive_data.host_pubkeys[i];
800 if (key == NULL) 801 if (key == NULL)
801 continue; 802 continue;
803 /* Check that the key is accepted in HostkeyAlgorithms */
804 if (match_pattern_list(sshkey_ssh_name(key),
805 options.hostkeyalgorithms, 0) != 1) {
806 debug3("%s: %s key not permitted by HostkeyAlgorithms",
807 __func__, sshkey_ssh_name(key));
808 continue;
809 }
802 switch (key->type) { 810 switch (key->type) {
803 case KEY_RSA: 811 case KEY_RSA:
804 case KEY_DSA: 812 case KEY_DSA: