- jmc@cvs.openbsd.org 2007/01/12 20:20:41
[ssh-keygen.1 ssh-keygen.c] more secsh -> rfc 4716 updates; spotted by wiz@netbsd ok markus
This commit is contained in:
parent
bf6b328f27
commit
26dc3e656a
|
@ -5,6 +5,11 @@
|
||||||
do not use a list for SYNOPSIS;
|
do not use a list for SYNOPSIS;
|
||||||
this is actually part of a larger report sent by eric s. raymond
|
this is actually part of a larger report sent by eric s. raymond
|
||||||
and forwarded by brad, but i only read half of it. spotted by brad.
|
and forwarded by brad, but i only read half of it. spotted by brad.
|
||||||
|
- jmc@cvs.openbsd.org 2007/01/12 20:20:41
|
||||||
|
[ssh-keygen.1 ssh-keygen.c]
|
||||||
|
more secsh -> rfc 4716 updates;
|
||||||
|
spotted by wiz@netbsd
|
||||||
|
ok markus
|
||||||
|
|
||||||
20070128
|
20070128
|
||||||
- (djm) [channels.c serverloop.c] Fix so-called "hang on exit" (bz #52)
|
- (djm) [channels.c serverloop.c] Fix so-called "hang on exit" (bz #52)
|
||||||
|
@ -2700,4 +2705,4 @@
|
||||||
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
||||||
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4610 2007/02/19 11:08:17 dtucker Exp $
|
$Id: ChangeLog,v 1.4611 2007/02/19 11:09:06 dtucker Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.\" $OpenBSD: ssh-keygen.1,v 1.73 2006/12/11 21:25:46 markus Exp $
|
.\" $OpenBSD: ssh-keygen.1,v 1.74 2007/01/12 20:20:41 jmc Exp $
|
||||||
.\"
|
.\"
|
||||||
.\" -*- nroff -*-
|
.\" -*- nroff -*-
|
||||||
.\"
|
.\"
|
||||||
|
@ -253,7 +253,7 @@ in SSH2-compatible format and print an OpenSSH compatible private
|
||||||
(or public) key to stdout.
|
(or public) key to stdout.
|
||||||
.Nm
|
.Nm
|
||||||
also reads the
|
also reads the
|
||||||
.Sq SECSH Public Key File Format .
|
RFC 4716 SSH Public Key File Format.
|
||||||
This option allows importing keys from several commercial
|
This option allows importing keys from several commercial
|
||||||
SSH implementations.
|
SSH implementations.
|
||||||
.It Fl l
|
.It Fl l
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: ssh-keygen.c,v 1.158 2007/01/03 03:01:40 stevesk Exp $ */
|
/* $OpenBSD: ssh-keygen.c,v 1.159 2007/01/12 20:20:41 jmc 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
|
||||||
|
@ -1016,13 +1016,13 @@ usage(void)
|
||||||
#ifdef SMARTCARD
|
#ifdef SMARTCARD
|
||||||
fprintf(stderr, " -D reader Download public key from smartcard.\n");
|
fprintf(stderr, " -D reader Download public key from smartcard.\n");
|
||||||
#endif /* SMARTCARD */
|
#endif /* SMARTCARD */
|
||||||
fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
|
fprintf(stderr, " -e Convert OpenSSH to RFC 4716 key file.\n");
|
||||||
fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
|
fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
|
||||||
fprintf(stderr, " -f filename Filename of the key file.\n");
|
fprintf(stderr, " -f filename Filename of the key file.\n");
|
||||||
fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
|
fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
|
||||||
fprintf(stderr, " -g Use generic DNS resource record format.\n");
|
fprintf(stderr, " -g Use generic DNS resource record format.\n");
|
||||||
fprintf(stderr, " -H Hash names in known_hosts file.\n");
|
fprintf(stderr, " -H Hash names in known_hosts file.\n");
|
||||||
fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
|
fprintf(stderr, " -i Convert RFC 4716 to OpenSSH key file.\n");
|
||||||
fprintf(stderr, " -l Show fingerprint of key file.\n");
|
fprintf(stderr, " -l Show fingerprint of key file.\n");
|
||||||
fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
|
fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
|
||||||
fprintf(stderr, " -N phrase Provide new passphrase.\n");
|
fprintf(stderr, " -N phrase Provide new passphrase.\n");
|
||||||
|
|
Loading…
Reference in New Issue