]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - doc/pubkey.but
Merge branch 'pre-0.65'
[PuTTY.git] / doc / pubkey.but
1 \C{pubkey} Using public keys for SSH authentication
2
3 \H{pubkey-intro} \ii{Public key authentication} - an introduction
4
5 Public key authentication is an alternative means of identifying
6 yourself to a login server, instead of typing a password. It is more
7 secure and more flexible, but more difficult to set up.
8
9 In conventional password authentication, you prove you are who you
10 claim to be by proving that you know the correct password. The only
11 way to prove you know the password is to tell the server what you
12 think the password is. This means that if the server has been
13 hacked, or \i\e{spoofed} (see \k{gs-hostkey}), an attacker can learn
14 your password.
15
16 Public key authentication solves this problem. You generate a \i\e{key
17 pair}, consisting of a \i{public key} (which everybody is allowed to
18 know) and a \i{private key} (which you keep secret and do not give to
19 anybody). The private key is able to generate \i\e{signatures}.
20 A signature created using your private key cannot be forged by
21 anybody who does not have that key; but anybody who has your public
22 key can verify that a particular signature is genuine.
23
24 So you generate a key pair on your own computer, and you copy the
25 public key to the server. Then, when the server asks you to prove
26 who you are, PuTTY can generate a signature using your private key.
27 The server can verify that signature (since it has your public key)
28 and allow you to log in. Now if the server is hacked or spoofed, the
29 attacker does not gain your private key or password; they only gain
30 one signature. And signatures cannot be re-used, so they have gained
31 nothing.
32
33 There is a problem with this: if your private key is stored
34 unprotected on your own computer, then anybody who gains access to
35 \e{that} will be able to generate signatures as if they were you. So
36 they will be able to log in to your server under your account. For
37 this reason, your private key is usually \i\e{encrypted} when it is
38 stored on your local machine, using a \i{passphrase} of your choice. In
39 order to generate a signature, PuTTY must decrypt the key, so you
40 have to type your passphrase.
41
42 This can make public-key authentication less convenient than
43 password authentication: every time you log in to the server,
44 instead of typing a short password, you have to type a longer
45 passphrase. One solution to this is to use an \i\e{authentication
46 agent}, a separate program which holds decrypted private keys and
47 generates signatures on request. PuTTY's authentication agent is
48 called \i{Pageant}. When you begin a Windows session, you start Pageant
49 and load your private key into it (typing your passphrase once). For
50 the rest of your session, you can start PuTTY any number of times
51 and Pageant will automatically generate signatures without you
52 having to do anything. When you close your Windows session, Pageant
53 shuts down, without ever having stored your decrypted private key on
54 disk. Many people feel this is a good compromise between security
55 and convenience. See \k{pageant} for further details.
56
57 There is more than one \i{public-key algorithm} available. The most
58 common are \i{RSA} and \i{ECDSA}, but others exist, notably \i{DSA}
59 (otherwise known as DSS), the USA's federal Digital Signature Standard.
60 The key types supported by PuTTY are described in \k{puttygen-keytype}.
61
62 \H{pubkey-puttygen} Using \i{PuTTYgen}, the PuTTY key generator
63
64 \cfg{winhelp-topic}{puttygen.general}
65
66 PuTTYgen is a key generator. It \I{generating keys}generates pairs of
67 public and private keys to be used with PuTTY, PSCP, and Plink, as well
68 as the PuTTY authentication agent, Pageant (see \k{pageant}).  PuTTYgen
69 generates RSA, DSA, and ECDSA keys.
70
71 When you run PuTTYgen you will see a window where you have two
72 choices: \q{Generate}, to generate a new public/private key pair, or
73 \q{Load} to load in an existing private key.
74
75 \S{puttygen-generating} Generating a new key
76
77 This is a general outline of the procedure for generating a new key
78 pair. The following sections describe the process in more detail.
79
80 \b First, you need to select which type of key you want to generate,
81 and also select the strength of the key. This is described in more
82 detail in \k{puttygen-keytype} and
83 \k{puttygen-strength}.
84
85 \b Then press the \q{Generate} button, to actually generate the key.
86 \K{puttygen-generate} describes this step.
87
88 \b Once you have generated the key, select a comment field
89 (\k{puttygen-comment}) and a passphrase (\k{puttygen-passphrase}).
90
91 \b Now you're ready to save the private key to disk; press the
92 \q{Save private key} button. (See \k{puttygen-savepriv}).
93
94 Your key pair is now ready for use. You may also want to copy the
95 public key to your server, either by copying it out of the \q{Public
96 key for pasting into authorized_keys file} box (see
97 \k{puttygen-pastekey}), or by using the \q{Save public key} button
98 (\k{puttygen-savepub}). However, you don't need to do this
99 immediately; if you want, you can load the private key back into
100 PuTTYgen later (see \k{puttygen-load}) and the public key will be
101 available for copying and pasting again.
102
103 \K{pubkey-gettingready} describes the typical process of configuring
104 PuTTY to attempt public-key authentication, and configuring your SSH
105 server to accept it.
106
107 \S{puttygen-keytype} Selecting the type of key
108
109 \cfg{winhelp-topic}{puttygen.keytype}
110
111 Before generating a key pair using PuTTYgen, you need to select
112 which type of key you need. PuTTYgen currently supports three types
113 of key:
114
115 \b An \i{RSA} key for use with the SSH-1 protocol.
116
117 \b An RSA key for use with the SSH-2 protocol.
118
119 \b A \i{DSA} key for use with the SSH-2 protocol.
120
121 \b An \i{ECDSA} (\i{elliptic curve} DSA) key for use with the
122 SSH-2 protocol.
123
124 The SSH-1 protocol only supports RSA keys; if you will be connecting
125 using the SSH-1 protocol, you must select the first key type or your
126 key will be completely useless.
127
128 The SSH-2 protocol supports more than one key type. The types
129 supported by PuTTY are RSA, DSA, and ECDSA.
130
131 The PuTTY developers \e{strongly} recommend you use RSA. \#{FIXME: ECDSA!}
132 \I{security risk}\i{DSA} has an intrinsic weakness which makes it very
133 easy to create a signature which contains enough information to give
134 away the \e{private} key!
135 This would allow an attacker to pretend to be you for any number of
136 future sessions. PuTTY's implementation has taken very careful
137 precautions to avoid this weakness, but we cannot be 100% certain we
138 have managed it, and if you have the choice we strongly recommend
139 using RSA keys instead.
140
141 If you really need to connect to an SSH server which only supports
142 DSA, then you probably have no choice but to use DSA. If you do use
143 DSA, we recommend you do not use the same key to authenticate with
144 more than one server.
145
146 \S{puttygen-strength} Selecting the size (strength) of the key
147
148 \cfg{winhelp-topic}{puttygen.bits}
149
150 The \q{Number of bits} input box allows you to choose the strength
151 of the key PuTTYgen will generate.
152
153 For RSA, 2048 bits should currently be sufficient for most purposes.
154 \#{FIXME: DSA}
155 For ECDSA, only 256, 384, and 521 bits are supported. (ECDSA offers
156 equivalent security to RSA with smaller key sizes.)
157
158 \S{puttygen-generate} The \q{Generate} button
159
160 \cfg{winhelp-topic}{puttygen.generate}
161
162 Once you have chosen the type of key you want, and the strength of
163 the key, press the \q{Generate} button and PuTTYgen will begin the
164 process of actually generating the key.
165
166 First, a progress bar will appear and PuTTYgen will ask you to move
167 the mouse around to generate randomness. Wave the mouse in circles
168 over the blank area in the PuTTYgen window, and the progress bar
169 will gradually fill up as PuTTYgen collects enough randomness. You
170 don't need to wave the mouse in particularly imaginative patterns
171 (although it can't hurt); PuTTYgen will collect enough randomness
172 just from the fine detail of \e{exactly} how far the mouse has moved
173 each time Windows samples its position.
174
175 When the progress bar reaches the end, PuTTYgen will begin creating
176 the key. The progress bar will reset to the start, and gradually
177 move up again to track the progress of the key generation. It will
178 not move evenly, and may occasionally slow down to a stop; this is
179 unfortunately unavoidable, because key generation is a random
180 process and it is impossible to reliably predict how long it will
181 take.
182
183 When the key generation is complete, a new set of controls will
184 appear in the window to indicate this.
185
186 \S{puttygen-fingerprint} The \q{\ii{Key fingerprint}} box
187
188 \cfg{winhelp-topic}{puttygen.fingerprint}
189
190 The \q{Key fingerprint} box shows you a fingerprint value for the
191 generated key. This is derived cryptographically from the \e{public}
192 key value, so it doesn't need to be kept secret.
193
194 The fingerprint value is intended to be cryptographically secure, in
195 the sense that it is computationally infeasible for someone to
196 invent a second key with the same fingerprint, or to find a key with
197 a particular fingerprint. So some utilities, such as the Pageant key
198 list box (see \k{pageant-mainwin-keylist}) and the Unix \c{ssh-add}
199 utility, will list key fingerprints rather than the whole public key.
200
201 \S{puttygen-comment} Setting a comment for your key
202
203 \cfg{winhelp-topic}{puttygen.comment}
204
205 If you have more than one key and use them for different purposes,
206 you don't need to memorise the key fingerprints in order to tell
207 them apart. PuTTYgen allows you to enter a \e{comment} for your key,
208 which will be displayed whenever PuTTY or Pageant asks you for the
209 passphrase.
210
211 The default comment format, if you don't specify one, contains the
212 key type and the date of generation, such as \c{rsa-key-20011212}.
213 Another commonly used approach is to use your name and the name of
214 the computer the key will be used on, such as \c{simon@simons-pc}.
215
216 To alter the key comment, just type your comment text into the
217 \q{Key comment} box before saving the private key. If you want to
218 change the comment later, you can load the private key back into
219 PuTTYgen, change the comment, and save it again.
220
221 \S{puttygen-passphrase} Setting a \i{passphrase} for your key
222
223 \cfg{winhelp-topic}{puttygen.passphrase}
224
225 The \q{Key passphrase} and \q{Confirm passphrase} boxes allow you to
226 choose a passphrase for your key. The passphrase will be used to
227 \i{encrypt} the key on disk, so you will not be able to use the key
228 without first entering the passphrase.
229
230 When you save the key, PuTTYgen will check that the \q{Key passphrase}
231 and \q{Confirm passphrase} boxes both contain exactly the same
232 passphrase, and will refuse to save the key otherwise.
233
234 If you leave the passphrase fields blank, the key will be saved
235 unencrypted. You should \e{not} do this without good reason; if you
236 do, your private key file on disk will be all an attacker needs to
237 gain access to any machine configured to accept that key. If you
238 want to be able to \I{passwordless login}log in without having to
239 type a passphrase every time, you should consider using Pageant
240 (\k{pageant}) so that your decrypted key is only held in memory
241 rather than on disk.
242
243 Under special circumstances you may genuinely \e{need} to use a key
244 with no passphrase; for example, if you need to run an automated
245 batch script that needs to make an SSH connection, you can't be
246 there to type the passphrase. In this case we recommend you generate
247 a special key for each specific batch script (or whatever) that
248 needs one, and on the server side you should arrange that each key
249 is \e{restricted} so that it can only be used for that specific
250 purpose. The documentation for your SSH server should explain how to
251 do this (it will probably vary between servers).
252
253 Choosing a good passphrase is difficult. Just as you shouldn't use a
254 dictionary word as a password because it's easy for an attacker to
255 run through a whole dictionary, you should not use a song lyric,
256 quotation or other well-known sentence as a passphrase. \i{DiceWare}
257 (\W{http://www.diceware.com/}\cw{www.diceware.com}) recommends using
258 at least five words each generated randomly by rolling five dice,
259 which gives over 2^64 possible passphrases and is probably not a bad
260 scheme. If you want your passphrase to make grammatical sense, this
261 cuts down the possibilities a lot and you should use a longer one as
262 a result.
263
264 \e{Do not forget your passphrase}. There is no way to recover it.
265
266 \S{puttygen-savepriv} Saving your private key to a disk file
267
268 \cfg{winhelp-topic}{puttygen.savepriv}
269
270 Once you have generated a key, set a comment field and set a
271 passphrase, you are ready to save your private key to disk.
272
273 Press the \q{Save private key} button. PuTTYgen will put up a dialog
274 box asking you where to save the file. Select a directory, type in a
275 file name, and press \q{Save}.
276
277 This file is in PuTTY's native format (\c{*.\i{PPK}}); it is the one you
278 will need to tell PuTTY to use for authentication (see
279 \k{config-ssh-privkey}) or tell Pageant to load (see
280 \k{pageant-mainwin-addkey}).
281
282 \S{puttygen-savepub} Saving your public key to a disk file
283
284 \cfg{winhelp-topic}{puttygen.savepub}
285
286 RFC 4716 specifies a \I{SSH-2 public key format}standard format for
287 storing SSH-2 public keys on disk. Some SSH servers (such as
288 \i\cw{ssh.com}'s) require a public key in this format in order to accept
289 authentication with the corresponding private key. (Others, such as
290 OpenSSH, use a different format; see \k{puttygen-pastekey}.)
291
292 To save your public key in the SSH-2 standard format, press the
293 \q{Save public key} button in PuTTYgen. PuTTYgen will put up a
294 dialog box asking you where to save the file. Select a directory,
295 type in a file name, and press \q{Save}.
296
297 You will then probably want to copy the public key file to your SSH
298 server machine. See \k{pubkey-gettingready} for general instructions
299 on configuring public-key authentication once you have generated a
300 key.
301
302 If you use this option with an SSH-1 key, the file PuTTYgen saves
303 will contain exactly the same text that appears in the \q{Public key
304 for pasting} box. This is the only existing standard for SSH-1
305 public keys.
306
307 \S{puttygen-pastekey} \q{Public key for pasting into \i{authorized_keys
308 file}}
309
310 \cfg{winhelp-topic}{puttygen.pastekey}
311
312 All SSH-1 servers require your public key to be given to it in a
313 one-line format before it will accept authentication with your
314 private key. The \i{OpenSSH} server also requires this for SSH-2.
315
316 The \q{Public key for pasting into authorized_keys file} gives the
317 public-key data in the correct one-line format. Typically you will
318 want to select the entire contents of the box using the mouse, press
319 Ctrl+C to copy it to the clipboard, and then paste the data into a
320 PuTTY session which is already connected to the server.
321
322 See \k{pubkey-gettingready} for general instructions on configuring
323 public-key authentication once you have generated a key.
324
325 \S{puttygen-load} Reloading a private key
326
327 \cfg{winhelp-topic}{puttygen.load}
328
329 PuTTYgen allows you to load an existing private key file into
330 memory. If you do this, you can then change the passphrase and
331 comment before saving it again; you can also make extra copies of
332 the public key.
333
334 To load an existing key, press the \q{Load} button. PuTTYgen will
335 put up a dialog box where you can browse around the file system and
336 find your key file. Once you select the file, PuTTYgen will ask you
337 for a passphrase (if necessary) and will then display the key
338 details in the same way as if it had just generated the key.
339
340 If you use the Load command to load a foreign key format, it will
341 work, but you will see a message box warning you that the key you
342 have loaded is not a PuTTY native key. See \k{puttygen-conversions}
343 for information about importing foreign key formats.
344
345 \S{puttygen-conversions} Dealing with private keys in other formats
346
347 \cfg{winhelp-topic}{puttygen.conversions}
348
349 Most SSH-1 clients use a standard format for storing private keys on
350 disk. PuTTY uses this format as well; so if you have generated an
351 SSH-1 private key using OpenSSH or \cw{ssh.com}'s client, you can use
352 it with PuTTY, and vice versa.
353
354 However, SSH-2 private keys have no standard format. \I{OpenSSH private
355 key format}OpenSSH and \I{ssh.com private key format}\cw{ssh.com} have
356 different formats, and PuTTY's is different again.
357 So a key generated with one client cannot immediately be used with
358 another.
359
360 Using the \I{importing keys}\q{Import} command from the \q{Conversions}
361 menu, PuTTYgen can load SSH-2 private keys in OpenSSH's format and
362 \cw{ssh.com}'s format. Once you have loaded one of these key types, you
363 can then save it back out as a PuTTY-format key (\c{*.\i{PPK}}) so that
364 you can use it with the PuTTY suite. The passphrase will be unchanged by this
365 process (unless you deliberately change it). You may want to change
366 the key comment before you save the key, since OpenSSH's SSH-2 key
367 format contains no space for a comment and \cw{ssh.com}'s default
368 comment format is long and verbose.
369
370 PuTTYgen can also \i{export private keys} in OpenSSH format and in
371 \cw{ssh.com} format. To do so, select one of the \q{Export} options
372 from the \q{Conversions} menu. Exporting a key works exactly like
373 saving it (see \k{puttygen-savepriv}) - you need to have typed your
374 passphrase in beforehand, and you will be warned if you are about to
375 save a key without a passphrase.
376
377 Note that since only SSH-2 keys come in different formats, the export
378 options are not available if you have generated an SSH-1 key.
379
380 \H{pubkey-gettingready} Getting ready for public key authentication
381
382 Connect to your SSH server using PuTTY with the SSH protocol. When the
383 connection succeeds you will be prompted for your user name and
384 password to login. Once logged in, you must configure the server to
385 accept your public key for authentication:
386
387 \b If your server is using the SSH-1 protocol, you should change
388 into the \i\c{.ssh} directory and open the file \i\c{authorized_keys}
389 with your favourite editor. (You may have to create this file if
390 this is the first key you have put in it). Then switch to the
391 PuTTYgen window, select all of the text in the \q{Public key for
392 pasting into authorized_keys file} box (see \k{puttygen-pastekey}),
393 and copy it to the clipboard (\c{Ctrl+C}). Then, switch back to the
394 PuTTY window and insert the data into the open file, making sure it
395 ends up all on one line. Save the file.
396
397 \b If your server is \i{OpenSSH} and is using the SSH-2 protocol, you
398 should follow the same instructions, except that in earlier versions
399 of OpenSSH 2 the file might be called \c{authorized_keys2}. (In
400 modern versions the same \c{authorized_keys} file is used for both
401 SSH-1 and SSH-2 keys.)
402
403 \b If your server is \i\cw{ssh.com}'s product and is using SSH-2, you
404 need to save a \e{public} key file from PuTTYgen (see
405 \k{puttygen-savepub}), and copy that into the \i\c{.ssh2} directory on
406 the server. Then you should go into that \c{.ssh2} directory, and edit
407 (or create) a file called \c{authorization}. In this file you should
408 put a line like \c{Key mykey.pub}, with \c{mykey.pub} replaced by the
409 name of your key file.
410
411 \b For other SSH server software, you should refer to the manual for
412 that server.
413
414 You may also need to ensure that your home directory, your \c{.ssh}
415 directory, and any other files involved (such as
416 \c{authorized_keys}, \c{authorized_keys2} or \c{authorization}) are
417 not group-writable or world-writable. You can typically do this by
418 using a command such as
419
420 \c chmod go-w $HOME $HOME/.ssh $HOME/.ssh/authorized_keys
421
422 Your server should now be configured to accept authentication using
423 your private key. Now you need to configure PuTTY to \e{attempt}
424 authentication using your private key. You can do this in any of
425 three ways:
426
427 \b Select the private key in PuTTY's configuration. See
428 \k{config-ssh-privkey} for details.
429
430 \b Specify the key file on the command line with the \c{-i} option.
431 See \k{using-cmdline-identity} for details.
432
433 \b Load the private key into Pageant (see \k{pageant}). In this case
434 PuTTY will automatically try to use it for authentication if it can.