summaryrefslogtreecommitdiff
path: root/kex.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-03-30 10:47:14 +1000
committerDamien Miller <djm@mindrot.org>2001-03-30 10:47:14 +1000
commit2557bfc5d712cd3422921253be60be2fbb88a4f7 (patch)
treec615d4eaf1aa41da73112a41c950cb4b69200a53 /kex.h
parentd8f72ca6d5c8234699fc2c49b56837de554b2cf6 (diff)
- (djm) OpenBSD CVS Sync
- provos@cvs.openbsd.org 2001/03/28 21:59:41 [kex.c kex.h sshconnect2.c sshd.c] forgot to include min and max params in hash, okay markus@
Diffstat (limited to 'kex.h')
-rw-r--r--kex.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/kex.h b/kex.h
index 5004699d9..41337680a 100644
--- a/kex.h
+++ b/kex.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: kex.h,v 1.15 2001/03/05 17:17:20 markus Exp $ */ 1/* $OpenBSD: kex.h,v 1.16 2001/03/28 21:59:40 provos Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -127,7 +127,8 @@ kex_hash_gex(
127 char *ckexinit, int ckexinitlen, 127 char *ckexinit, int ckexinitlen,
128 char *skexinit, int skexinitlen, 128 char *skexinit, int skexinitlen,
129 char *serverhostkeyblob, int sbloblen, 129 char *serverhostkeyblob, int sbloblen,
130 int minbits, BIGNUM *prime, BIGNUM *gen, 130 int min, int wantbits, int max,
131 BIGNUM *prime, BIGNUM *gen,
131 BIGNUM *client_dh_pub, 132 BIGNUM *client_dh_pub,
132 BIGNUM *server_dh_pub, 133 BIGNUM *server_dh_pub,
133 BIGNUM *shared_secret); 134 BIGNUM *shared_secret);