summaryrefslogtreecommitdiff
path: root/moduli.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-12-10 00:54:38 +1100
committerDarren Tucker <dtucker@zip.com.au>2003-12-10 00:54:38 +1100
commit5cd9d443ef70e5c8bf8cc21bc6cc81298e18e863 (patch)
tree54167b9fb2c0509c109986dbb75ac4fc72bd10f2 /moduli.c
parenta615314d3b784fbafff3ea72aaf7dc18cd23dbeb (diff)
- dtucker@cvs.openbsd.org 2003/12/09 13:52:55
[moduli.c] Prevent ssh-keygen -T from outputting moduli with a generator of 0, since they can't be used for Diffie-Hellman. Assistance and ok djm@
Diffstat (limited to 'moduli.c')
-rw-r--r--moduli.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/moduli.c b/moduli.c
index 17c7281c5..371319d0f 100644
--- a/moduli.c
+++ b/moduli.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: moduli.c,v 1.3 2003/12/07 06:34:18 djm Exp $ */ 1/* $OpenBSD: moduli.c,v 1.4 2003/12/09 13:52:55 dtucker Exp $ */
2/* 2/*
3 * Copyright 1994 Phil Karn <karn@qualcomm.com> 3 * Copyright 1994 Phil Karn <karn@qualcomm.com>
4 * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson@greendragon.com> 4 * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson@greendragon.com>
@@ -550,6 +550,15 @@ prime_test(FILE *in, FILE *out, u_int32_t trials,
550 continue; 550 continue;
551 } 551 }
552 552
553 /*
554 * Primes with no known generator are useless for DH, so
555 * skip those.
556 */
557 if (generator_known == 0) {
558 debug2("%10u: no known generator", count_in);
559 continue;
560 }
561
553 count_possible++; 562 count_possible++;
554 563
555 /* 564 /*