PKCS#11 interface. You can use it to explore PKCS#11 without having a Hardware Security Module. It is being developed as a part of the OpenDNSSEC project. SoftHSM uses Botan for its cryptographic operations.
14 lines
316 B
Makefile
14 lines
316 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2010/03/13 17:47:56 pettai Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.softhsm
|
|
PKG_SUPPORTED_OPTIONS= sigver
|
|
PKG_SUGGESTED_OPTIONS=
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Signature verification for debugging
|
|
###
|
|
.if !empty(PKG_OPTIONS:Msigver)
|
|
CONFIGURE_ARGS+= --enable-sigver
|
|
.endif
|