diff options
author | 2019-01-20 01:12:40 +0000 | |
---|---|---|
committer | 2019-01-20 01:12:40 +0000 | |
commit | 765b8e0af001c531823889e23e94a03d70dd5157 (patch) | |
tree | d8dc03d6d75e5a1303a13019a644db367f18db2b | |
parent | Use rdmsr_safe in svm_handle_msr (diff) | |
download | wireguard-openbsd-765b8e0af001c531823889e23e94a03d70dd5157.tar.xz wireguard-openbsd-765b8e0af001c531823889e23e94a03d70dd5157.zip |
DH-GEX min value is now specified in RFC8270. ok djm@
-rw-r--r-- | usr.bin/ssh/dh.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/dh.h b/usr.bin/ssh/dh.h index 7af4aeca317..adb643a7534 100644 --- a/usr.bin/ssh/dh.h +++ b/usr.bin/ssh/dh.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dh.h,v 1.16 2018/09/13 02:08:33 djm Exp $ */ +/* $OpenBSD: dh.h,v 1.17 2019/01/20 01:12:40 dtucker Exp $ */ /* * Copyright (c) 2000 Niels Provos. All rights reserved. @@ -48,7 +48,7 @@ u_int dh_estimate(int); /* * Max value from RFC4419. - * Miniumum increased in light of DH precomputation attacks. + * Min value from RFC8270. */ #define DH_GRP_MIN 2048 #define DH_GRP_MAX 8192 |