Skip to content

Commit

Permalink
moving things around....
Browse files Browse the repository at this point in the history
  • Loading branch information
killerswan committed Jul 25, 2011
1 parent d355aaf commit 72f9265
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
*.aux
*.ps
*.eventlog
dist/
*/dist/


39 changes: 39 additions & 0 deletions blakesum-demo/blakesum-demo.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: blakesum-demo
version: 0.5
synopsis: The BLAKE SHA-3 candidate hashes, in Haskell
description:
.
This provides an executable which relies on the `blakesum` library, `Data.Digest.BLAKE`.
.
Usage:
blakesum [--algorithm=BITS] [--check] [--salt=SALT] FILE(S)
.
Contributions and optimizations are welcome!
.
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

executable blakesum
main-is: Main.hs
hs-source-dirs: .
build-depends: base >= 4 && < 5,
blakesum >= 0 && < 1,
bytestring >= 0 && < 1,
haskell98 >= 1 && < 2,
text >= 0 && < 1,
vector >= 0 && < 1


0 comments on commit 72f9265

Please sign in to comment.