summaryrefslogtreecommitdiff
path: root/kexgex.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-02-05 12:19:52 +1100
committerDamien Miller <djm@mindrot.org>2002-02-05 12:19:52 +1100
commit9ab47eeb229761173ce5da5b4976d9ea9a7b75e4 (patch)
tree4c6a56b641c77b2d728cf6dd2f77bc1058020efb /kexgex.c
parent07a2d429b2aafe273056f71ab150456fe3ff31ef (diff)
downloadopenssh-git-9ab47eeb229761173ce5da5b4976d9ea9a7b75e4.tar.gz
- markus@cvs.openbsd.org 2002/01/31 13:35:11
[kexdh.c kexgex.c] cross check announced key type and type from key blob
Diffstat (limited to 'kexgex.c')
-rw-r--r--kexgex.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/kexgex.c b/kexgex.c
index b50a7114..dc2fa672 100644
--- a/kexgex.c
+++ b/kexgex.c
@@ -24,7 +24,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: kexgex.c,v 1.16 2002/01/25 22:07:40 markus Exp $");
+RCSID("$OpenBSD: kexgex.c,v 1.17 2002/01/31 13:35:11 markus Exp $");
#include <openssl/bn.h>
@@ -176,7 +176,8 @@ kexgex_client(Kex *kex)
server_host_key = key_from_blob(server_host_key_blob, sbloblen);
if (server_host_key == NULL)
fatal("cannot decode server_host_key_blob");
-
+ if (server_host_key->type != kex->hostkey_type)
+ fatal("type mismatch for decoded server_host_key_blob");
if (kex->verify_host_key == NULL)
fatal("cannot verify server_host_key");
if (kex->verify_host_key(server_host_key) == -1)