Edit

IABSD.fr/src/usr.bin/ssh/ssh-pkcs11-helper

Branch :

  • Show log

    Commit

  • Author : djm
    Date : 2019-12-13 19:09:10
    Hash : 4852100a
    Message : use ssh-sk-helper for all security key signing operations This extracts and refactors the client interface for ssh-sk-helper from ssh-agent and generalises it for use by the other programs. This means that most OpenSSH tools no longer need to link against libfido2 or directly interact with /dev/uhid* requested by, feedback and ok markus@

  • Makefile
  • #	$OpenBSD: Makefile,v 1.11 2019/12/13 19:09:10 djm Exp $
    
    .PATH:		${.CURDIR}/..
    
    SRCS=	ssh-pkcs11-helper.c ${SRCS_PKCS11}
    SRCS+=	atomicio.c compat.c fatal.c readpass.c
    SRCS+=	${SRCS_KEY} ${SRCS_UTL} ${SRCS_BASE} ${SRCS_SK_CLIENT}
    
    PROG=	ssh-pkcs11-helper
    
    BINDIR=	/usr/libexec
    MAN=	ssh-pkcs11-helper.8
    
    .include <bsd.prog.mk>
    
    LDADD+=	-lcrypto -lutil
    DPADD+=	${LIBCRYPTO} ${LIBUTIL}