summaryrefslogtreecommitdiff
path: root/dh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-12-17 16:33:53 +1100
committerDamien Miller <djm@mindrot.org>2003-12-17 16:33:53 +1100
commit8975ddf11b17bf58191c653a0173d91e50e942c7 (patch)
tree3625ddd71ec3d86f289d4a06fea8378c044b6bff /dh.c
parent509b0107f0e67cb4af663c147179d35fa6425614 (diff)
- markus@cvs.openbsd.org 2003/12/16 15:51:54
[dh.c] use <= instead of < in dh_estimate; ok provos/hshoexer; do not return < DH_GRP_MIN
Diffstat (limited to 'dh.c')
-rw-r--r--dh.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/dh.c b/dh.c
index c924efee0..c7a3e18be 100644
--- a/dh.c
+++ b/dh.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: dh.c,v 1.25 2003/09/18 13:02:21 miod Exp $"); 26RCSID("$OpenBSD: dh.c,v 1.26 2003/12/16 15:51:54 markus Exp $");
27 27
28#include "xmalloc.h" 28#include "xmalloc.h"
29 29
@@ -279,11 +279,9 @@ int
279dh_estimate(int bits) 279dh_estimate(int bits)
280{ 280{
281 281
282 if (bits < 64) 282 if (bits <= 128)
283 return (512); /* O(2**63) */
284 if (bits < 128)
285 return (1024); /* O(2**86) */ 283 return (1024); /* O(2**86) */
286 if (bits < 192) 284 if (bits <= 192)
287 return (2048); /* O(2**116) */ 285 return (2048); /* O(2**116) */
288 return (4096); /* O(2**156) */ 286 return (4096); /* O(2**156) */
289} 287}