diff options
Diffstat (limited to 'dh.h')
-rw-r--r-- | dh.h | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dh.h,v 1.13 2015/05/27 23:39:18 dtucker Exp $ */ | 1 | /* $OpenBSD: dh.h,v 1.14 2015/10/16 22:32:22 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2000 Niels Provos. All rights reserved. | 4 | * Copyright (c) 2000 Niels Provos. All rights reserved. |
@@ -44,8 +44,11 @@ int dh_pub_is_valid(DH *, BIGNUM *); | |||
44 | 44 | ||
45 | u_int dh_estimate(int); | 45 | u_int dh_estimate(int); |
46 | 46 | ||
47 | /* Min and max values from RFC4419. */ | 47 | /* |
48 | #define DH_GRP_MIN 1024 | 48 | * Max value from RFC4419. |
49 | * Miniumum increased in light of DH precomputation attacks. | ||
50 | */ | ||
51 | #define DH_GRP_MIN 2048 | ||
49 | #define DH_GRP_MAX 8192 | 52 | #define DH_GRP_MAX 8192 |
50 | 53 | ||
51 | /* | 54 | /* |