diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2015-05-28 01:39:18 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-05-28 05:53:13 +0200 |
commit | 40f64292b907afd0a674fdbf3e4c2356d17a7d68 (patch) | |
tree | b1bc6d972fd8cd1ad234468a30cd5c92ea2fd174 /dh.h | |
parent | New moduli file from OpenBSD, removing 1k groups. (diff) | |
download | openssh-40f64292b907afd0a674fdbf3e4c2356d17a7d68.tar.xz openssh-40f64292b907afd0a674fdbf3e4c2356d17a7d68.zip |
upstream commit
Add a stronger (4k bit) fallback group that sshd can use
when the moduli file is missing or broken, sourced from RFC3526. bz#2302, ok
markus@ (earlier version), djm@
Upstream-ID: b635215746a25a829d117673d5e5a76d4baee7f4
Diffstat (limited to 'dh.h')
-rw-r--r-- | dh.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: dh.h,v 1.12 2015/01/19 20:16:15 markus Exp $ */ +/* $OpenBSD: dh.h,v 1.13 2015/05/27 23:39:18 dtucker Exp $ */ /* * Copyright (c) 2000 Niels Provos. All rights reserved. @@ -37,6 +37,7 @@ DH *dh_new_group_asc(const char *, const char *); DH *dh_new_group(BIGNUM *, BIGNUM *); DH *dh_new_group1(void); DH *dh_new_group14(void); +DH *dh_new_group_fallback(int); int dh_gen_key(DH *, int); int dh_pub_is_valid(DH *, BIGNUM *); |