diff options
author | 2010-02-08 10:50:20 +0000 | |
---|---|---|
committer | 2010-02-08 10:50:20 +0000 | |
commit | 41503faf624b2f2cfce8a6beac1143f97e77ddbd (patch) | |
tree | 338bac2679d79cb5102bab1722d44b18999ca219 /usr.bin/ssh/ssh-agent | |
parent | ...and yet another typo copied from ospfd: the ev_sighup event handler (diff) | |
download | wireguard-openbsd-41503faf624b2f2cfce8a6beac1143f97e77ddbd.tar.xz wireguard-openbsd-41503faf624b2f2cfce8a6beac1143f97e77ddbd.zip |
replace our obsolete smartcard code with PKCS#11.
ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs-11v2-20.pdf
ssh(1) and ssh-keygen(1) use dlopen(3) directly to talk to a PKCS#11
provider (shared library) while ssh-agent(1) delegates PKCS#11 to
a forked a ssh-pkcs11-helper process.
PKCS#11 is currently a compile time option.
feedback and ok djm@; inspired by patches from Alon Bar-Lev
Diffstat (limited to 'usr.bin/ssh/ssh-agent')
-rw-r--r-- | usr.bin/ssh/ssh-agent/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-agent/Makefile b/usr.bin/ssh/ssh-agent/Makefile index 05ae43fcc8b..e02f440e465 100644 --- a/usr.bin/ssh/ssh-agent/Makefile +++ b/usr.bin/ssh/ssh-agent/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.22 2002/08/12 10:46:35 markus Exp $ +# $OpenBSD: Makefile,v 1.23 2010/02/08 10:50:20 markus Exp $ .PATH: ${.CURDIR}/.. @@ -12,6 +12,7 @@ BINDIR= /usr/bin MAN= ssh-agent.1 SRCS= ssh-agent.c +#SRCS+= ssh-pkcs11-client.c .include <bsd.prog.mk> |