diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | dh.c | 8 |
2 files changed, 8 insertions, 6 deletions
@@ -29,6 +29,10 @@ | |||
29 | application layer keep alive (ServerAliveInterval ServerAliveCountMax) | 29 | application layer keep alive (ServerAliveInterval ServerAliveCountMax) |
30 | for ssh(1), similar to the sshd(8) option; ok beck@; with help from | 30 | for ssh(1), similar to the sshd(8) option; ok beck@; with help from |
31 | jmc and dtucker@ | 31 | jmc and dtucker@ |
32 | - markus@cvs.openbsd.org 2003/12/16 15:51:54 | ||
33 | [dh.c] | ||
34 | use <= instead of < in dh_estimate; ok provos/hshoexer; | ||
35 | do not return < DH_GRP_MIN | ||
32 | 36 | ||
33 | 20031209 | 37 | 20031209 |
34 | - (dtucker) OpenBSD CVS Sync | 38 | - (dtucker) OpenBSD CVS Sync |
@@ -1598,4 +1602,4 @@ | |||
1598 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1602 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1599 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1603 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1600 | 1604 | ||
1601 | $Id: ChangeLog,v 1.3146 2003/12/17 05:33:10 djm Exp $ | 1605 | $Id: ChangeLog,v 1.3147 2003/12/17 05:33:53 djm Exp $ |
@@ -23,7 +23,7 @@ | |||
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "includes.h" | 25 | #include "includes.h" |
26 | RCSID("$OpenBSD: dh.c,v 1.25 2003/09/18 13:02:21 miod Exp $"); | 26 | RCSID("$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 | |||
279 | dh_estimate(int bits) | 279 | dh_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 | } |