summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-01-22 23:05:08 +1100
committerDamien Miller <djm@mindrot.org>2002-01-22 23:05:08 +1100
commita41c8b15bd2137f99e70d792ea66ee98e390726b (patch)
treeae73ee7e48b3ba43e485b7de96668c0227c5e7a5
parentc68d43335f11c6d1659e39433c9c075a97d48f16 (diff)
- djm@cvs.openbsd.org 2001/12/21 08:52:22
[ssh-keygen.1 ssh-keygen.c] Remove default (rsa1) key type; ok markus@
-rw-r--r--ChangeLog6
-rw-r--r--ssh-keygen.111
-rw-r--r--ssh-keygen.c11
3 files changed, 17 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index b6c6d23c..a7e62cdb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,10 @@
- Add OpenSSL sanity check: verify that header version matches version
reported by library
- (djm) Fix some bugs I introduced into ssh-rand-helper yesterday
+ - OpenBSD CVS Sync
+ - djm@cvs.openbsd.org 2001/12/21 08:52:22
+ [ssh-keygen.1 ssh-keygen.c]
+ Remove default (rsa1) key type; ok markus@
20020121
- (djm) Rework ssh-rand-helper:
@@ -7156,4 +7160,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.1724 2002/01/22 11:16:03 djm Exp $
+$Id: ChangeLog,v 1.1725 2002/01/22 12:05:08 djm Exp $
diff --git a/ssh-keygen.1 b/ssh-keygen.1
index d8baa43b..afecb2f0 100644
--- a/ssh-keygen.1
+++ b/ssh-keygen.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: ssh-keygen.1,v 1.51 2001/11/21 18:49:14 stevesk Exp $
+.\" $OpenBSD: ssh-keygen.1,v 1.52 2001/12/21 08:52:22 djm Exp $
.\"
.\" -*- nroff -*-
.\"
@@ -86,10 +86,11 @@
generates, manages and converts authentication keys for
.Xr ssh 1 .
.Nm
-defaults to generating a RSA1 key for use by SSH protocol version 1.
-Specifying the
+can create RSA keys for use by SSH protocol version 1 and RSA or DSA
+keys for use by SSH protocol version 2. The type of key to be generated
+is specified with the
.Fl t
-option instead creates a key for use by SSH protocol version 2.
+option.
.Pp
Normally each user wishing to use SSH
with RSA or DSA authentication runs this once to create the authentication
@@ -202,8 +203,6 @@ for protocol version 1 and
or
.Dq dsa
for protocol version 2.
-The default is
-.Dq rsa1 .
.It Fl B
Show the bubblebabble digest of specified private or public key file.
.It Fl C Ar comment
diff --git a/ssh-keygen.c b/ssh-keygen.c
index ccd73778..9e3a12a5 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh-keygen.c,v 1.86 2001/12/19 07:18:56 deraadt Exp $");
+RCSID("$OpenBSD: ssh-keygen.c,v 1.87 2001/12/21 08:52:22 djm Exp $");
#include <openssl/evp.h>
#include <openssl/pem.h>
@@ -73,8 +73,7 @@ int convert_to_ssh2 = 0;
int convert_from_ssh2 = 0;
int print_public = 0;
-/* default to RSA for SSH-1 */
-char *key_type_name = "rsa1";
+char *key_type_name = NULL;
/* argv0 */
#ifdef HAVE___PROGNAME
@@ -835,7 +834,7 @@ usage(void)
int
main(int ac, char **av)
{
- char dotsshdir[16 * 1024], comment[1024], *passphrase1, *passphrase2;
+ char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
char *reader_id = NULL;
Key *private, *public;
struct passwd *pw;
@@ -937,6 +936,10 @@ main(int ac, char **av)
printf("Too many arguments.\n");
usage();
}
+ if (key_type_name == NULL) {
+ printf("You must specify a key type (-t).\n");
+ usage();
+ }
if (change_passphrase && change_comment) {
printf("Can only have one of -p and -c.\n");
usage();