]> andersk Git - openssh.git/blame - ssh-keygen.1
- (bal) Put USE_PIPES back into sco3.2v5
[openssh.git] / ssh-keygen.1
CommitLineData
bf740959 1.\" -*- nroff -*-
2.\"
bf740959 3.\" Author: Tatu Ylonen <ylo@cs.hut.fi>
bf740959 4.\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5.\" All rights reserved
6.\"
bcbf86ec 7.\" As far as I am concerned, the code I have written for this software
8.\" can be used freely for any purpose. Any derived versions of this
9.\" software must be clearly marked as such, and if the derived work is
10.\" incompatible with the protocol description in the RFC file, it must be
11.\" called by a name other than "ssh" or "Secure Shell".
12.\"
13.\"
14.\" Copyright (c) 1999,2000 Markus Friedl. All rights reserved.
15.\" Copyright (c) 1999 Aaron Campbell. All rights reserved.
16.\" Copyright (c) 1999 Theo de Raadt. All rights reserved.
17.\"
18.\" Redistribution and use in source and binary forms, with or without
19.\" modification, are permitted provided that the following conditions
20.\" are met:
21.\" 1. Redistributions of source code must retain the above copyright
22.\" notice, this list of conditions and the following disclaimer.
23.\" 2. Redistributions in binary form must reproduce the above copyright
24.\" notice, this list of conditions and the following disclaimer in the
25.\" documentation and/or other materials provided with the distribution.
bf740959 26.\"
bcbf86ec 27.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
28.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
29.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
30.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
31.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bf740959 37.\"
38.Dd September 25, 1999
39.Dt SSH-KEYGEN 1
40.Os
41.Sh NAME
42.Nm ssh-keygen
43.Nd authentication key generation
44.Sh SYNOPSIS
45.Nm ssh-keygen
fa08c86b 46.Op Fl q
bf740959 47.Op Fl b Ar bits
fa08c86b 48.Op Fl t Ar type
bf740959 49.Op Fl N Ar new_passphrase
50.Op Fl C Ar comment
7cd3766c 51.Op Fl f Ar output_keyfile
bf740959 52.Nm ssh-keygen
53.Fl p
54.Op Fl P Ar old_passphrase
55.Op Fl N Ar new_passphrase
f095fcc7 56.Op Fl f Ar keyfile
bf740959 57.Nm ssh-keygen
1d1ffb87 58.Fl x
7cd3766c 59.Op Fl f Ar input_keyfile
1d1ffb87 60.Nm ssh-keygen
61.Fl X
7cd3766c 62.Op Fl f Ar input_keyfile
1d1ffb87 63.Nm ssh-keygen
64.Fl y
7cd3766c 65.Op Fl f Ar input_keyfile
1d1ffb87 66.Nm ssh-keygen
bf740959 67.Fl c
68.Op Fl P Ar passphrase
69.Op Fl C Ar comment
f095fcc7 70.Op Fl f Ar keyfile
71.Nm ssh-keygen
72.Fl l
7cd3766c 73.Op Fl f Ar input_keyfile
f54651ce 74.Sh DESCRIPTION
bf740959 75.Nm
f54651ce 76generates and manages authentication keys for
bf740959 77.Xr ssh 1 .
1d1ffb87 78.Nm
79defaults to generating an RSA key for use by protocols 1.3 and 1.5;
80specifying the
fa08c86b 81.Fl t
b5c334cc 82option allows you to create a key for use by protocol 2.0.
1d1ffb87 83.Pp
bf740959 84Normally each user wishing to use SSH
1d1ffb87 85with RSA or DSA authentication runs this once to create the authentication
bf740959 86key in
1d1ffb87 87.Pa $HOME/.ssh/identity
88or
89.Pa $HOME/.ssh/id_dsa .
90Additionally, the system administrator may use this to generate host keys,
91as seen in
92.Pa /etc/rc .
bf740959 93.Pp
94Normally this program generates the key and asks for a file in which
4fe2af09 95to store the private key.
96The public key is stored in a file with the same name but
bf740959 97.Dq .pub
4fe2af09 98appended.
99The program also asks for a passphrase.
100The passphrase may be empty to indicate no passphrase
b5c334cc 101(host keys must have an empty passphrase), or it may be a string of
4fe2af09 102arbitrary length.
103Good passphrases are 10-30 characters long and are
bf740959 104not simple sentences or otherwise easily guessable (English
105prose has only 1-2 bits of entropy per word, and provides very bad
4fe2af09 106passphrases).
107The passphrase can be changed later by using the
bf740959 108.Fl p
109option.
110.Pp
4fe2af09 111There is no way to recover a lost passphrase.
112If the passphrase is
bf740959 113lost or forgotten, you will have to generate a new key and copy the
114corresponding public key to other machines.
115.Pp
1d1ffb87 116For RSA, there is also a comment field in the key file that is only for
4fe2af09 117convenience to the user to help identify the key.
118The comment can tell what the key is for, or whatever is useful.
119The comment is initialized to
bf740959 120.Dq user@host
121when the key is created, but can be changed using the
122.Fl c
123option.
124.Pp
1d1ffb87 125After a key is generated, instructions below detail where the keys
126should be placed to be activated.
127.Pp
bf740959 128The options are as follows:
129.Bl -tag -width Ds
130.It Fl b Ar bits
4fe2af09 131Specifies the number of bits in the key to create.
132Minimum is 512 bits.
133Generally 1024 bits is considered sufficient, and key sizes
134above that no longer improve security but make things slower.
135The default is 1024 bits.
bf740959 136.It Fl c
137Requests changing the comment in the private and public key files.
138The program will prompt for the file containing the private keys, for
139passphrase if the key has one, and for the new comment.
f095fcc7 140.It Fl f
141Specifies the filename of the key file.
142.It Fl l
143Show fingerprint of specified private or public key file.
bf740959 144.It Fl p
145Requests changing the passphrase of a private key file instead of
4fe2af09 146creating a new private key.
147The program will prompt for the file
bf740959 148containing the private key, for the old passphrase, and twice for the
149new passphrase.
150.It Fl q
151Silence
152.Nm ssh-keygen .
153Used by
154.Pa /etc/rc
155when creating a new key.
fa08c86b 156.It Fl t Ar type
157Specifies the type of the key to create.
158The possible values are
159.Dq rsa1
160for protocol version 1 and
161.Dq rsa
162or
163.Dq dsa
164for protocol version 2.
165The default is
166.Dq rsa .
bf740959 167.It Fl C Ar comment
168Provides the new comment.
169.It Fl N Ar new_passphrase
170Provides the new passphrase.
171.It Fl P Ar passphrase
172Provides the (old) passphrase.
1d1ffb87 173.It Fl x
174This option will read a private
d0c832f3 175OpenSSH DSA format file and print a SSH2-compatible public key to stdout.
1d1ffb87 176.It Fl X
94ec8c6b 177This option will read a unencrypted
178SSH2-compatible private (or public) key file and
179print an OpenSSH compatible private (or public) key to stdout.
1d1ffb87 180.It Fl y
181This option will read a private
fa08c86b 182OpenSSH format file and print an OpenSSH public key to stdout.
bf740959 183.El
184.Sh FILES
185.Bl -tag -width Ds
bf740959 186.It Pa $HOME/.ssh/identity
4fe2af09 187Contains the RSA authentication identity of the user.
188This file should not be readable by anyone but the user.
189It is possible to
bf740959 190specify a passphrase when generating the key; that passphrase will be
4fe2af09 191used to encrypt the private part of this file using 3DES.
192This file is not automatically accessed by
bf740959 193.Nm
194but it is offered as the default file for the private key.
1d1ffb87 195.Xr sshd 8
196will read this file when a login attempt is made.
bf740959 197.It Pa $HOME/.ssh/identity.pub
4fe2af09 198Contains the public key for authentication.
199The contents of this file should be added to
bf740959 200.Pa $HOME/.ssh/authorized_keys
201on all machines
4fe2af09 202where you wish to log in using RSA authentication.
203There is no need to keep the contents of this file secret.
1d1ffb87 204.It Pa $HOME/.ssh/id_dsa
205Contains the DSA authentication identity of the user.
206This file should not be readable by anyone but the user.
207It is possible to
208specify a passphrase when generating the key; that passphrase will be
209used to encrypt the private part of this file using 3DES.
210This file is not automatically accessed by
211.Nm
212but it is offered as the default file for the private key.
213.Xr sshd 8
214will read this file when a login attempt is made.
215.It Pa $HOME/.ssh/id_dsa.pub
216Contains the public key for authentication.
217The contents of this file should be added to
218.Pa $HOME/.ssh/authorized_keys2
219on all machines
fa08c86b 220where you wish to log in using public key authentication.
1d1ffb87 221There is no need to keep the contents of this file secret.
089fbbd2 222.El
fa08c86b 223.Sh AUTHORS
bf740959 224Tatu Ylonen <ylo@cs.hut.fi>
225.Pp
226OpenSSH
227is a derivative of the original (free) ssh 1.2.12 release, but with bugs
4fe2af09 228removed and newer features re-added.
229Rapidly after the 1.2.12 release,
230newer versions bore successively more restrictive licenses.
231This version of OpenSSH
bf740959 232.Bl -bullet
233.It
bcbf86ec 234has all components of a restrictive nature (i.e., patents, see
235.Xr crypto 3 )
bf740959 236directly removed from the source code; any licensed or patented components
237are chosen from
238external libraries.
239.It
240has been updated to support ssh protocol 1.5.
241.It
f54651ce 242contains added support for
bf740959 243.Xr kerberos 8
244authentication and ticket passing.
245.It
246supports one-time password authentication with
247.Xr skey 1 .
248.El
bf740959 249.Sh SEE ALSO
250.Xr ssh 1 ,
251.Xr ssh-add 1 ,
0c372277 252.Xr ssh-agent 1 ,
bf740959 253.Xr sshd 8 ,
bcbf86ec 254.Xr crypto 3
This page took 0.151583 seconds and 5 git commands to generate.