Name: cipher-rc4 Version: 0.1.0 Description: Fast RC4 cipher implementation License: BSD3 License-file: LICENSE Copyright: Vincent Hanquez Author: Vincent Hanquez Maintainer: Vincent Hanquez 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 , vector 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 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 , deepseq , criterion , mtl source-repository head type: git location: git://github.com/vincenthz/hs-cipher-rc4