summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--ssh.118
2 files changed, 18 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 99ec97956..5e1bb231b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -26,6 +26,9 @@
26 - jmc@cvs.openbsd.org 2010/03/05 06:50:35 26 - jmc@cvs.openbsd.org 2010/03/05 06:50:35
27 [ssh.1 sshd.8] 27 [ssh.1 sshd.8]
28 tweak previous; 28 tweak previous;
29 - jmc@cvs.openbsd.org 2010/03/05 08:31:20
30 [ssh.1]
31 document certificate authentication; help/ok djm
29 - (tim) [ssh-pkcs11.c] Fix "non-constant initializer" errors in older 32 - (tim) [ssh-pkcs11.c] Fix "non-constant initializer" errors in older
30 compilers. OK djm@ 33 compilers. OK djm@
31 - (djm) [ssh-rand-helper.c] declare optind, avoiding compilation failure 34 - (djm) [ssh-rand-helper.c] declare optind, avoiding compilation failure
diff --git a/ssh.1 b/ssh.1
index fd713e3b4..c1a408348 100644
--- a/ssh.1
+++ b/ssh.1
@@ -34,7 +34,7 @@
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36.\" 36.\"
37.\" $OpenBSD: ssh.1,v 1.300 2010/03/05 06:50:34 jmc Exp $ 37.\" $OpenBSD: ssh.1,v 1.301 2010/03/05 08:31:20 jmc Exp $
38.Dd $Mdocdate: March 5 2010 $ 38.Dd $Mdocdate: March 5 2010 $
39.Dt SSH 1 39.Dt SSH 1
40.Os 40.Os
@@ -798,8 +798,20 @@ file, and has one key
798per line, though the lines can be very long. 798per line, though the lines can be very long.
799After this, the user can log in without giving the password. 799After this, the user can log in without giving the password.
800.Pp 800.Pp
801The most convenient way to use public key authentication may be with an 801A variation on public key authentication
802authentication agent. 802is available in the form of certificate authentication:
803instead of a set of public/private keys,
804signed certificates are used.
805This has the advantage that a single trusted certification authority
806can be used in place of many public/private keys.
807See the
808.Sx CERTIFICATES
809section of
810.Xr ssh-keygen 1
811for more information.
812.Pp
813The most convenient way to use public key or certificate authentication
814may be with an authentication agent.
803See 815See
804.Xr ssh-agent 1 816.Xr ssh-agent 1
805for more information. 817for more information.