summaryrefslogtreecommitdiff
path: root/ssh-keygen.c
diff options
context:
space:
mode:
authordjm <djm>2010-09-10 01:17:38 +0000
committerdjm <djm>2010-09-10 01:17:38 +0000
commit6fbd8fb8d9330216a89295f92d6dce4ed587f126 (patch)
tree2b7de74847adccc6592e0cf02639ddc55b187901 /ssh-keygen.c
parente932eb16b0efbaeb2357e45b03af4eb11253907b (diff)
downloadopenssh-6fbd8fb8d9330216a89295f92d6dce4ed587f126.tar.gz
- 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@
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r--ssh-keygen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 0abf10f6..43b8c7f9 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -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>
* 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. */
#define DEFAULT_BITS 2048
#define DEFAULT_BITS_DSA 1024
-#define DEFAULT_BITS_ECDSA 521
+#define DEFAULT_BITS_ECDSA 256
u_int32_t bits = 0;
/*