packages feed

cipher-rc4-0.1.4: cipher-rc4.cabal

Name:                cipher-rc4
Version:             0.1.4
Description:         Fast RC4 cipher implementation
License:             BSD3
License-file:        LICENSE
Copyright:           Vincent Hanquez <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          Vincent Hanquez <vincent@snarc.org>
Synopsis:            Fast RC4 cipher implementation
Category:            Cryptography
Build-Type:          Simple
Homepage:            http://github.com/vincenthz/hs-cipher-rc4
Cabal-Version:       >=1.8
Extra-Source-Files:  Tests/*.hs
                     cbits/*.h

Library
  Build-Depends:     base >= 4 && < 5
                   , bytestring
                   , byteable
                   , crypto-cipher-types >= 0.0.5 && < 0.1
  Exposed-modules:   Crypto.Cipher.RC4
  ghc-options:       -Wall
  C-sources:         cbits/rc4.c

Test-Suite test-cipher-rc4
  type:              exitcode-stdio-1.0
  hs-source-dirs:    Tests
  Main-Is:           Tests.hs
  Build-depends:     base >= 4 && < 5
                   , cipher-rc4
                   , bytestring
                   , QuickCheck >= 2
                   , test-framework >= 0.3.3
                   , test-framework-quickcheck2 >= 0.2.9
                   , crypto-cipher-types >= 0.0.5
                   , crypto-cipher-tests >= 0.0.7

Benchmark bench-cipher-rc4
  hs-source-dirs:    Benchmarks
  Main-Is:           Benchmarks.hs
  type:              exitcode-stdio-1.0
  Build-depends:     base >= 4 && < 5
                   , bytestring
                   , cipher-rc4
                   , crypto-cipher-types >= 0.0.5
                   , crypto-cipher-benchmarks >= 0.0.3
                   , deepseq
                   , criterion
                   , mtl

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