- naddy@cvs.openbsd.org 2010/09/02 17:21:50
[ssh-keygen.c] Switch ECDSA default key size to 256 bits, which according to RFC5656 should still be better than our current RSA-2048 default. ok djm@, markus@
This commit is contained in:
parent
5929c52f65
commit
6e9f680cd2
|
@ -24,6 +24,11 @@
|
||||||
- markus@cvs.openbsd.org 2010/09/02 16:08:39
|
- markus@cvs.openbsd.org 2010/09/02 16:08:39
|
||||||
[ssh.c]
|
[ssh.c]
|
||||||
unbreak ControlPersist=yes for ControlMaster=yes; ok djm@
|
unbreak ControlPersist=yes for ControlMaster=yes; ok djm@
|
||||||
|
- naddy@cvs.openbsd.org 2010/09/02 17:21:50
|
||||||
|
[ssh-keygen.c]
|
||||||
|
Switch ECDSA default key size to 256 bits, which according to RFC5656
|
||||||
|
should still be better than our current RSA-2048 default.
|
||||||
|
ok djm@, markus@
|
||||||
|
|
||||||
20100831
|
20100831
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: ssh-keygen.c,v 1.202 2010/09/02 16:07:25 markus Exp $ */
|
/* $OpenBSD: ssh-keygen.c,v 1.203 2010/09/02 17:21:50 naddy Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
|
/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
|
||||||
#define DEFAULT_BITS 2048
|
#define DEFAULT_BITS 2048
|
||||||
#define DEFAULT_BITS_DSA 1024
|
#define DEFAULT_BITS_DSA 1024
|
||||||
#define DEFAULT_BITS_ECDSA 521
|
#define DEFAULT_BITS_ECDSA 256
|
||||||
u_int32_t bits = 0;
|
u_int32_t bits = 0;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue