summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh-keysign
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2002-05-23 19:24:32 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2002-05-23 19:24:32 +0000
commitf9af44845483e4aa0ad9f50a4b683b306722d93e (patch)
tree1fa2dfb1a9ba835c50cc1a79bec5e90bc6829c65 /usr.bin/ssh/ssh-keysign
parent0c6ba561e82f6676f56adebb7f07e20a76a24207 (diff)
add /usr/libexec/ssh-keysign: a setuid helper program for hostbased authentication
in protocol v2 (needs to access the hostkeys).
Diffstat (limited to 'usr.bin/ssh/ssh-keysign')
-rw-r--r--usr.bin/ssh/ssh-keysign/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/usr.bin/ssh/ssh-keysign/Makefile b/usr.bin/ssh/ssh-keysign/Makefile
new file mode 100644
index 00000000000..70edbeddaff
--- /dev/null
+++ b/usr.bin/ssh/ssh-keysign/Makefile
@@ -0,0 +1,18 @@
+# $OpenBSD: Makefile,v 1.1 2002/05/23 19:24:31 markus Exp $
+
+.PATH: ${.CURDIR}/..
+
+PROG= ssh-keysign
+BINOWN= root
+
+BINMODE?=4555
+
+BINDIR= /usr/libexec
+NOMAN=yes
+
+SRCS= ssh-keysign.c
+
+.include <bsd.prog.mk>
+
+LDADD+= -lcrypto
+DPADD+= ${LIBCRYPTO}