- OpenBSD CVS Sync
- provos@cvs.openbsd.org 2001/03/29 14:24:59 [sshconnect2.c] use recommended defaults
This commit is contained in:
parent
5d57e50730
commit
653ae11c4a
|
@ -10,6 +10,9 @@
|
||||||
- markus@cvs.openbsd.org 2001/03/28 22:43:31
|
- markus@cvs.openbsd.org 2001/03/28 22:43:31
|
||||||
[auth.h auth2.c auth2-chall.c]
|
[auth.h auth2.c auth2-chall.c]
|
||||||
check auth_root_allowed for kbd-int auth, too.
|
check auth_root_allowed for kbd-int auth, too.
|
||||||
|
- provos@cvs.openbsd.org 2001/03/29 14:24:59
|
||||||
|
[sshconnect2.c]
|
||||||
|
use recommended defaults
|
||||||
|
|
||||||
20010329
|
20010329
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
|
@ -4780,4 +4783,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1038 2001/03/30 00:48:31 djm Exp $
|
$Id: ChangeLog,v 1.1039 2001/03/30 00:49:05 djm Exp $
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: sshconnect2.c,v 1.58 2001/03/28 21:59:40 provos Exp $");
|
RCSID("$OpenBSD: sshconnect2.c,v 1.59 2001/03/29 14:24:59 provos Exp $");
|
||||||
|
|
||||||
#include <openssl/bn.h>
|
#include <openssl/bn.h>
|
||||||
#include <openssl/md5.h>
|
#include <openssl/md5.h>
|
||||||
|
@ -336,7 +336,7 @@ ssh_dhgex_client(Kex *kex, char *host, struct sockaddr *hostaddr,
|
||||||
|
|
||||||
/* New GEX request */
|
/* New GEX request */
|
||||||
min = DH_GRP_MIN;
|
min = DH_GRP_MIN;
|
||||||
max = MIN(DH_GRP_MAX, nbits * 1.25);
|
max = DH_GRP_MAX;
|
||||||
|
|
||||||
packet_start(SSH2_MSG_KEX_DH_GEX_REQUEST);
|
packet_start(SSH2_MSG_KEX_DH_GEX_REQUEST);
|
||||||
packet_put_int(min);
|
packet_put_int(min);
|
||||||
|
|
Loading…
Reference in New Issue