[BACK]Return to ssh-keygen.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/ssh-keygen.1 between version 1.35 and 1.36

version 1.35, 2001/03/11 22:33:23 version 1.36, 2001/04/10 09:13:21
Line 89 
Line 89 
 Normally each user wishing to use SSH  Normally each user wishing to use SSH
 with RSA or DSA authentication runs this once to create the authentication  with RSA or DSA authentication runs this once to create the authentication
 key in  key in
 .Pa $HOME/.ssh/identity  .Pa $HOME/.ssh/identity ,
   .Pa $HOME/.ssh/id_dsa
 or  or
 .Pa $HOME/.ssh/id_dsa .  .Pa $HOME/.ssh/id_rsa .
 Additionally, the system administrator may use this to generate host keys,  Additionally, the system administrator may use this to generate host keys,
 as seen in  as seen in
 .Pa /etc/rc .  .Pa /etc/rc .
Line 191 
Line 192 
 .Sh FILES  .Sh FILES
 .Bl -tag -width Ds  .Bl -tag -width Ds
 .It Pa $HOME/.ssh/identity  .It Pa $HOME/.ssh/identity
 Contains the RSA authentication identity of the user.  Contains the protocol version 1 RSA authentication identity of the user.
 This file should not be readable by anyone but the user.  This file should not be readable by anyone but the user.
 It is possible to  It is possible to
 specify a passphrase when generating the key; that passphrase will be  specify a passphrase when generating the key; that passphrase will be
Line 202 
Line 203 
 .Xr sshd 8  .Xr sshd 8
 will read this file when a login attempt is made.  will read this file when a login attempt is made.
 .It Pa $HOME/.ssh/identity.pub  .It Pa $HOME/.ssh/identity.pub
 Contains the public key for authentication.  Contains the protocol version 1 RSA public key for authentication.
 The contents of this file should be added to  The contents of this file should be added to
 .Pa $HOME/.ssh/authorized_keys  .Pa $HOME/.ssh/authorized_keys
 on all machines  on all machines
 where you wish to log in using RSA authentication.  where you wish to log in using RSA authentication.
 There is no need to keep the contents of this file secret.  There is no need to keep the contents of this file secret.
 .It Pa $HOME/.ssh/id_dsa  .It Pa $HOME/.ssh/id_dsa
 Contains the DSA authentication identity of the user.  Contains the protocol version 2 DSA authentication identity of the user.
 This file should not be readable by anyone but the user.  This file should not be readable by anyone but the user.
 It is possible to  It is possible to
 specify a passphrase when generating the key; that passphrase will be  specify a passphrase when generating the key; that passphrase will be
Line 220 
Line 221 
 .Xr sshd 8  .Xr sshd 8
 will read this file when a login attempt is made.  will read this file when a login attempt is made.
 .It Pa $HOME/.ssh/id_dsa.pub  .It Pa $HOME/.ssh/id_dsa.pub
 Contains the public key for authentication.  Contains the protocol version 2 DSA public key for authentication.
   The contents of this file should be added to
   .Pa $HOME/.ssh/authorized_keys2
   on all machines
   where you wish to log in using public key authentication.
   There is no need to keep the contents of this file secret.
   .It Pa $HOME/.ssh/id_rsa
   Contains the protocol version 2 RSA authentication identity of the user.
   This file should not be readable by anyone but the user.
   It is possible to
   specify a passphrase when generating the key; that passphrase will be
   used to encrypt the private part of this file using 3DES.
   This file is not automatically accessed by
   .Nm
   but it is offered as the default file for the private key.
   .Xr sshd 8
   will read this file when a login attempt is made.
   .It Pa $HOME/.ssh/id_rsa.pub
   Contains the protocol version 2 RSA public key for authentication.
 The contents of this file should be added to  The contents of this file should be added to
 .Pa $HOME/.ssh/authorized_keys2  .Pa $HOME/.ssh/authorized_keys2
 on all machines  on all machines

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36