secure cryptographic hash functions designed by Niels Ferguson, Stefan Lucks, Bruce Schneier, Doug Whiting, Mihir Bellare, Tadayoshi Kohno, Jon Callas and Jesse Walker. This package uses bindings to the optimized C implementation of Skein. We provide a high-level interface (see module "Crypto.Skein") to some of the Skein use cases. We also provide a low-level interface (see module "Crypto.Skein.Internal") should you need to use Skein in a different way. Currently we have support for Skein as cryptographic hash function as Skein as a message authentication code (Skein-MAC). For examples of how to use this package, see "Crypto.Skein" module documentation. ok sthen@
25 lines
517 B
Makefile
25 lines
517 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/01/22 17:17:51 kili Exp $
|
|
|
|
COMMENT = a family of cryptographic hash functions
|
|
|
|
DISTNAME = skein-0.1.0.4
|
|
CATEGORIES = security
|
|
|
|
# BSD3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = lang/ghc
|
|
|
|
MODGHC_BUILD = cabal hackage haddock register
|
|
|
|
RUN_DEPENDS = devel/hs-cereal>=0.3,<0.4 \
|
|
devel/hs-tagged>=0.2,<0.3 \
|
|
security/hs-crypto-api>=0.6,<0.9
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
|
|
.include <bsd.port.mk>
|