Engine_pkcs11 is an implementation of an engine for OpenSSL.
It can be loaded using code, config file or command line and will pass any function call by openssl to a PKCS#11 module. Engine_pkcs11 is meant to be used with smart cards and software for using smart cards in PKCS#11 format, such as OpenSC. WWW: http://www.opensc-project.org/engine_pkcs11/ Note: the port requires the OpenSSL installed from ports, since dynamic engine loading is disabled in base system. See PR bin/79570 for details.
This commit is contained in:
parent
acf7714db0
commit
6050f3251d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=165248
5 changed files with 53 additions and 0 deletions
|
@ -103,6 +103,7 @@
|
|||
SUBDIR += drweb-qmail
|
||||
SUBDIR += drweb-sendmail
|
||||
SUBDIR += dsniff
|
||||
SUBDIR += engine_pkcs11
|
||||
SUBDIR += expiretable
|
||||
SUBDIR += f-prot
|
||||
SUBDIR += f-prot-sig
|
||||
|
|
35
security/engine_pkcs11/Makefile
Normal file
35
security/engine_pkcs11/Makefile
Normal file
|
@ -0,0 +1,35 @@
|
|||
# New ports collection makefile for: engine_pkcs11
|
||||
# Date created: 1 Jun 2006
|
||||
# Whom: Alex Dupre <ale@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= engine_pkcs11
|
||||
PORTVERSION= 0.1.3
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= http://www.opensc-project.org/files/${PORTNAME}/
|
||||
|
||||
MAINTAINER= ale@FreeBSD.org
|
||||
COMMENT= An implementation of a PKCS#11 engine for OpenSSL
|
||||
|
||||
LIB_DEPENDS= p11.1:${PORTSDIR}/security/libp11
|
||||
|
||||
USE_OPENSSL= yes
|
||||
WITH_OPENSSL_PORT=yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GNOME= pkgconfig
|
||||
|
||||
CONFIGURE_ARGS= --with-openssl="${OPENSSLBASE}"
|
||||
|
||||
DOC_FILES= README *.sh *.xsl *.css *.html
|
||||
|
||||
PORTDOCS= *
|
||||
|
||||
.ifndef(NOPORTDOCS)
|
||||
post-install:
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
@(cd ${WRKSRC}/doc && ${CP} -R ${DOC_FILES} ${DOCSDIR})
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
3
security/engine_pkcs11/distinfo
Normal file
3
security/engine_pkcs11/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (engine_pkcs11-0.1.3.tar.gz) = 26eb84950a10b7d869e41a50620ebf09
|
||||
SHA256 (engine_pkcs11-0.1.3.tar.gz) = bf6f49203912cb77f92db55c146117312abf9244ba49e78649e4a7da22448e54
|
||||
SIZE (engine_pkcs11-0.1.3.tar.gz) = 312738
|
10
security/engine_pkcs11/pkg-descr
Normal file
10
security/engine_pkcs11/pkg-descr
Normal file
|
@ -0,0 +1,10 @@
|
|||
Engine_pkcs11 is an implementation of an engine for OpenSSL.
|
||||
It can be loaded using code, config file or command line and
|
||||
will pass any function call by openssl to a PKCS#11 module.
|
||||
Engine_pkcs11 is meant to be used with smart cards and software
|
||||
for using smart cards in PKCS#11 format, such as OpenSC.
|
||||
|
||||
WWW: http://www.opensc-project.org/engine_pkcs11/
|
||||
|
||||
- Alex Dupre
|
||||
ale@FreeBSD.org
|
4
security/engine_pkcs11/pkg-plist
Normal file
4
security/engine_pkcs11/pkg-plist
Normal file
|
@ -0,0 +1,4 @@
|
|||
lib/engines/engine_pkcs11.a
|
||||
lib/engines/engine_pkcs11.la
|
||||
lib/engines/engine_pkcs11.so
|
||||
@dirrmtry lib/engines
|
Loading…
Reference in a new issue