Skein [1] is a family of fast secure cryptographic hash functions. This

package uses bindings to the optimized C implementation of Skein.  There
is a high-level interface provided to some of the Skein use cases, and a
low-level interface when Skein has to be used in a different way.

Currently Skein is supported as cryptographic hash function as Skein as
a message authentication code (Skein-MAC).

[1] http://www.skein-hash.info/

WWW:	http://patch-tag.com/r/felipe/skein

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali
2012-02-13 02:52:47 +00:00
parent 447fda15e5
commit 847e9c51b9
4 changed files with 36 additions and 0 deletions

View File

@@ -182,6 +182,7 @@ semigroups_port= math/hs-semigroups
SHA_port= security/hs-SHA
show_port= devel/hs-show
simple-sendfile_port= net/hs-simple-sendfile
skein_port= security/hs-skein
smallcheck_port= devel/hs-smallcheck
snap_port= www/hs-snap
snap-core_port= www/hs-snap-core

View File

@@ -0,0 +1,22 @@
# New ports collection makefile for: hs-skein
# Date created: November 19, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= skein
PORTVERSION= 0.1.0.5
CATEGORIES= security haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Skein, a family of cryptographic hash functions
LICENSE= BSD
CABAL_SETUP= Setup.hs
USE_CABAL= cereal>=0.3 crypto-api>=0.6 tagged>=0.2
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@@ -0,0 +1,2 @@
SHA256 (cabal/skein-0.1.0.5.tar.gz) = cb3b44d56e0803837b17e827454208441c0fb2bcccf14bb600486bfb9bf71e8a
SIZE (cabal/skein-0.1.0.5.tar.gz) = 116667

View File

@@ -0,0 +1,11 @@
Skein [1] is a family of fast secure cryptographic hash functions. This
package uses bindings to the optimized C implementation of Skein. There
is a high-level interface provided to some of the Skein use cases, and a
low-level interface when Skein has to be used in a different way.
Currently Skein is supported as cryptographic hash function as Skein as
a message authentication code (Skein-MAC).
[1] http://www.skein-hash.info/
WWW: http://patch-tag.com/r/felipe/skein