packages feed

afis-0.1.0: afis.cabal

Name:                afis
Version:             0.1.0
Synopsis:            Anti-forensic Information Splitter
Description:         Anti-forensic Information Splitter as defined for LUKS
License:             BSD3
License-file:        LICENSE
Copyright:           Vincent Hanquez <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          vincent@snarc.org
Category:            Cryptography,Data
Stability:           experimental
Build-Type:          Simple
Homepage:            http://github.com/vincenthz/hs-afis
Cabal-Version:       >=1.8
data-files:          README.md

Library
  Build-Depends:     base >= 3 && < 5
                   , bytestring
                   , cryptohash
                   , crypto-random-api
                   , packer
                   , byteable
                   , bytedump
  Exposed-modules:   Crypto.Data.AFIS

--Executable           afis
--  Main-Is:           afis.hs
--  ghc-options:       -Wall -fno-warn-missing-signatures
--  Hs-Source-Dirs:    .
--  Build-depends:     base >= 4 && < 5

Test-Suite test-afis
  type:              exitcode-stdio-1.0
  hs-source-dirs:    tests
  Main-is:           Tests.hs
  Build-Depends:     base >= 3 && < 5
                   , mtl
                   , QuickCheck >= 2
                   , HUnit
                   , test-framework
                   , test-framework-quickcheck2
                   , test-framework-hunit
                   , afis
                   , crypto-random-api
                   , cryptohash
                   , bytestring
                   , bytedump
  ghc-options:       -Wall -fno-warn-orphans -fno-warn-missing-signatures

source-repository head
  type: git
  location: git://github.com/vincenthz/hs-afis