diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2010-02-09 08:25:33 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2010-02-09 08:25:33 +0000 |
commit | 8a4e609d5c232de8379f086afd319544ec56198d (patch) | |
tree | 06222b90681b5f21a8c8734bdc1d53848aadb2ee | |
parent | 7ad7a38e1ef40f8fa0fa8cc3c61fbb0893e44396 (diff) |
add manpage; ok djm@
-rw-r--r-- | usr.bin/ssh/ssh-pkcs11-helper.8 | 43 | ||||
-rw-r--r-- | usr.bin/ssh/ssh-pkcs11-helper/Makefile | 4 |
2 files changed, 45 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-pkcs11-helper.8 b/usr.bin/ssh/ssh-pkcs11-helper.8 new file mode 100644 index 00000000000..2a361cbf224 --- /dev/null +++ b/usr.bin/ssh/ssh-pkcs11-helper.8 @@ -0,0 +1,43 @@ +.\" $OpenBSD: ssh-pkcs11-helper.8,v 1.1 2010/02/09 08:25:32 markus Exp $ +.\" +.\" Copyright (c) 2010 Markus Friedl. All rights reserved. +.\" +.\" Permission to use, copy, modify, and distribute this software for any +.\" purpose with or without fee is hereby granted, provided that the above +.\" copyright notice and this permission notice appear in all copies. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +.\" +.Dd $Mdocdate: February 9 2010 $ +.Dt SSH-PKCS11-HELPER 8 +.Os +.Sh NAME +.Nm ssh-pkcs11-helper +.Nd ssh helper program for PKCS#11 support +.Sh SYNOPSIS +.Nm +.Sh DESCRIPTION +.Nm +is used by +.Xr ssh-agent 1 +to access keys stored on a PKCS#11 token. +.Pp +.Nm +is not intended to be invoked by the user, but from +.Xr ssh-agent 1 . +.Sh SEE ALSO +.Xr ssh 1 , +.Xr ssh-add 1 , +.Xr ssh-agent 1 +.Sh HISTORY +.Nm +first appeared in +.Ox 4.7 . +.Sh AUTHORS +.An Markus Friedl Aq markus@openbsd.org diff --git a/usr.bin/ssh/ssh-pkcs11-helper/Makefile b/usr.bin/ssh/ssh-pkcs11-helper/Makefile index 361cb3aee11..7cd1b3b8785 100644 --- a/usr.bin/ssh/ssh-pkcs11-helper/Makefile +++ b/usr.bin/ssh/ssh-pkcs11-helper/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2010/02/08 10:50:20 markus Exp $ +# $OpenBSD: Makefile,v 1.2 2010/02/09 08:25:32 markus Exp $ .PATH: ${.CURDIR}/.. @@ -8,7 +8,7 @@ BINOWN= root BINMODE?=555 BINDIR= /usr/libexec -NOMAN= yes +MAN= ssh-pkcs11-helper.8 SRCS= ssh-pkcs11-helper.c ssh-pkcs11.c |