blakesum-0.4: blakesum.cabal
name: blakesum
version: 0.4
synopsis: The BLAKE SHA-3 candidate hashes, in Haskell
description:
.
This provides an implementation of the BLAKE SHA-3 candidate
hash algorithms in Haskell, including BLAKE-256, BLAKE-512,
BLAKE-224, and BLAKE-384.
.
Based on the BLAKE proposal,
here: http:\/\/131002.net\/blake\/blake.pdf
.
Contributions and optimizations are welcome!
.
This package installs both a library and an executable.
.
category: Cryptography
stability: experimental
license: BSD3
license-file: LICENSE
author: Kevin Cantu <me@kevincantu.org>
maintainer: Kevin Cantu <me@kevincantu.org>
copyright: (c) 2011 Kevin Cantu
homepage: https://github.com/killerswan/Haskell-BLAKE
bug-reports: https://github.com/killerswan/Haskell-BLAKE/issues
build-type: Simple
cabal-version: >=1.8
source-repository head
type: git
location: https://github.com/killerswan/Haskell-BLAKE
library
build-depends: base >= 4 && < 5,
bytestring >= 0 && < 1,
text >= 0 && < 1,
vector >= 0 && < 1
exposed-modules: Data.Digest.BLAKE
ghc-options: -Wall -O2
executable blakesum
main-is: Main.hs
hs-source-dirs: demo
build-depends: base >= 4 && < 5,
blakesum == 0.4,
bytestring >= 0 && < 1,
haskell98 >= 1 && < 2,
text >= 0 && < 1,
vector >= 0 && < 1