pubkey.but 24 KB

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