* Publish GCRY_MODULE_ID_USER and GCRY_MODULE_ID_USER_LAST constants. This functionality has been in Libgcrypt since 1.3.0. * MD5 may now be used in non-enforced fips mode. * Fixed HMAC for SHA-384 and SHA-512 with keys longer than 64 bytes. * In fips mode, RSA keys are now generated using the X9.31 algorithm and DSA keys using the FIPS 186-2 algorithm. * The transient-key flag is now also supported for DSA key generation. DSA domain parameters may be given as well.
23 lines
621 B
Makefile
23 lines
621 B
Makefile
# $NetBSD: options.mk,v 1.4 2009/01/31 08:53:14 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.libgcrypt
|
|
PKG_SUPPORTED_OPTIONS=
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${MACHINE_ARCH} == "i386" && ${OPSYS} != "Darwin"
|
|
. include "../../mk/compiler.mk"
|
|
# GCC 3.x (at least 3.3.3 on NetBSD) fails to compile asm() call in
|
|
# cipher/rijndael.c:do_padlock()
|
|
. if empty(CC_VERSION:Mgcc-3.*)
|
|
PKG_SUPPORTED_OPTIONS+= via-padlock
|
|
PKG_SUGGESTED_OPTIONS+= via-padlock
|
|
. endif
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if empty(PKG_OPTIONS:Mvia-padlock)
|
|
# Disable VIA Padlock support.
|
|
CONFIGURE_ARGS+= --disable-padlock-support
|
|
.endif
|