1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00

A collection of crypto hashes, with a practical incremental and one-pass,

pure APIs, with performance close to the fastest implementations available
in others languages.

The implementations are made in C with a haskell FFI wrapper that hide the
C implementation.

WWW:	http://github.com/vincenthz/hs-cryptohash

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-02-13 02:47:14 +00:00
parent 4ec9eee6db
commit b7fae4b365
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=291130
4 changed files with 31 additions and 0 deletions

View File

@ -58,6 +58,7 @@ Crypto_port= security/hs-Crypto
crypto-api_port= security/hs-crypto-api
crypto-pubkey-types_port= security/hs-crypto-pubkey-types
cryptocipher_port= security/hs-cryptocipher
cryptohash_port= security/hs-cryptohash
csv_port= textproc/hs-csv
curl_port= ftp/hs-curl
darcs_port= devel/hs-darcs # executable

View File

@ -0,0 +1,20 @@
# New ports collection makefile for: hs-cryptohash
# Date created: November 19, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= cryptohash
PORTVERSION= 0.7.4
CATEGORIES= security haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= A collection of crypto hashes, fast, pure, and practical
LICENSE= BSD
CABAL_SETUP= Setup.hs
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/cryptohash-0.7.4.tar.gz) = 4be94351f2960bc3a4c28bd6273a476a8c0896f3918f4c9ead12100c23aff4da
SIZE (cabal/cryptohash-0.7.4.tar.gz) = 38773

View File

@ -0,0 +1,8 @@
A collection of crypto hashes, with a practical incremental and one-pass,
pure APIs, with performance close to the fastest implementations available
in others languages.
The implementations are made in C with a haskell FFI wrapper that hide the
C implementation.
WWW: http://github.com/vincenthz/hs-cryptohash