summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/dh.c
diff options
context:
space:
mode:
authordtucker <dtucker@openbsd.org>2004-02-27 22:49:27 +0000
committerdtucker <dtucker@openbsd.org>2004-02-27 22:49:27 +0000
commit6216a8def84707b60b7fca96d8771d6efb482541 (patch)
treee17254c05a70cbd8632a6798f0f03d18d881d827 /usr.bin/ssh/dh.c
parentMake /etc/moduli line buffer big enough for 8kbit primes, in case anyone (diff)
downloadwireguard-openbsd-6216a8def84707b60b7fca96d8771d6efb482541.tar.xz
wireguard-openbsd-6216a8def84707b60b7fca96d8771d6efb482541.zip
Reset bit counter at the right time, fixes debug output in the case where
the DH group is rejected. ok markus@
Diffstat (limited to 'usr.bin/ssh/dh.c')
-rw-r--r--usr.bin/ssh/dh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/dh.c b/usr.bin/ssh/dh.c
index 0790aff79b0..afd1e05d001 100644
--- a/usr.bin/ssh/dh.c
+++ b/usr.bin/ssh/dh.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: dh.c,v 1.28 2004/02/27 22:44:56 dtucker Exp $");
+RCSID("$OpenBSD: dh.c,v 1.29 2004/02/27 22:49:27 dtucker Exp $");
#include "xmalloc.h"
@@ -197,7 +197,7 @@ dh_pub_is_valid(DH *dh, BIGNUM *dh_pub)
void
dh_gen_key(DH *dh, int need)
{
- int i, bits_set = 0, tries = 0;
+ int i, bits_set, tries = 0;
if (dh->p == NULL)
fatal("dh_gen_key: dh->p == NULL");
@@ -214,7 +214,7 @@ dh_gen_key(DH *dh, int need)
fatal("dh_gen_key: BN_rand failed");
if (DH_generate_key(dh) == 0)
fatal("DH_generate_key");
- for (i = 0; i <= BN_num_bits(dh->priv_key); i++)
+ for (i = 0, bits_set = 0; i <= BN_num_bits(dh->priv_key); i++)
if (BN_is_bit_set(dh->priv_key, i))
bits_set++;
debug2("dh_gen_key: priv key bits set: %d/%d",