summaryrefslogtreecommitdiff
path: root/kexgex.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-06-25 04:37:41 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-06-25 04:37:41 +0000
commitd6481ea49ab5999e00cc2a2fd7b6a1d779f4c598 (patch)
treec89fd81312f3b95fe22bcaad56cdb1b2a2dd822a /kexgex.c
parentb710f788f173a80a9a24fa041558087b56bb7fac (diff)
- markus@cvs.openbsd.org 2001/06/23 02:34:33
[kexdh.c kexgex.c kex.h pathnames.h readconf.c servconf.h ssh.1 sshconnect1.c sshconnect2.c sshconnect.c sshconnect.h sshd.8] get rid of known_hosts2, use it for hostkey lookup, but do not modify.
Diffstat (limited to 'kexgex.c')
-rw-r--r--kexgex.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/kexgex.c b/kexgex.c
index f21f310ee..01b86d903 100644
--- a/kexgex.c
+++ b/kexgex.c
@@ -24,7 +24,7 @@
24 */ 24 */
25 25
26#include "includes.h" 26#include "includes.h"
27RCSID("$OpenBSD: kexgex.c,v 1.6 2001/06/07 20:23:04 markus Exp $"); 27RCSID("$OpenBSD: kexgex.c,v 1.7 2001/06/23 02:34:29 markus Exp $");
28 28
29#include <openssl/bn.h> 29#include <openssl/bn.h>
30 30
@@ -177,9 +177,10 @@ kexgex_client(Kex *kex)
177 if (server_host_key == NULL) 177 if (server_host_key == NULL)
178 fatal("cannot decode server_host_key_blob"); 178 fatal("cannot decode server_host_key_blob");
179 179
180 if (kex->check_host_key == NULL) 180 if (kex->verify_host_key == NULL)
181 fatal("cannot check server_host_key"); 181 fatal("cannot verify server_host_key");
182 kex->check_host_key(server_host_key); 182 if (kex->verify_host_key(server_host_key) == -1)
183 fatal("server_host_key verification failed");
183 184
184 /* DH paramter f, server public DH key */ 185 /* DH paramter f, server public DH key */
185 dh_server_pub = BN_new(); 186 dh_server_pub = BN_new();