/cipher-blowfish/cipher-blowfish.cabal

http://github.com/vincenthz/hs-cryptocipher · Cabal · 55 lines · 51 code · 4 blank · 0 comment · 4 complexity · 3f6266e1e0c8d4eef44efe8951d9aa0a MD5 · raw file

  1. Name: cipher-blowfish
  2. Version: 0.0.3
  3. Description: Blowfish cipher primitives
  4. License: BSD3
  5. License-file: LICENSE
  6. Copyright: Vincent Hanquez <vincent@snarc.org>
  7. Author: Vincent Hanquez <vincent@snarc.org>
  8. Maintainer: Vincent Hanquez <vincent@snarc.org>
  9. Synopsis: Blowfish cipher
  10. Category: Cryptography
  11. Build-Type: Simple
  12. Homepage: http://github.com/vincenthz/hs-crypto-cipher
  13. Cabal-Version: >=1.8
  14. Library
  15. Build-Depends: base >= 4 && < 5
  16. , bytestring
  17. , byteable
  18. , vector
  19. , securemem >= 0.1.2
  20. , crypto-cipher-types >= 0.0.3 && < 0.1
  21. Exposed-modules: Crypto.Cipher.Blowfish
  22. Other-modules: Crypto.Cipher.Blowfish.Primitive
  23. ghc-options: -Wall -optc-O3 -fno-cse -fwarn-tabs
  24. Test-Suite test-cipher-blowfish
  25. type: exitcode-stdio-1.0
  26. hs-source-dirs: Tests
  27. Main-Is: Tests.hs
  28. Build-depends: base >= 4 && < 5
  29. , bytestring
  30. , QuickCheck >= 2
  31. , test-framework >= 0.3.3
  32. , test-framework-quickcheck2 >= 0.2.9
  33. , byteable
  34. , crypto-cipher-types >= 0.0.3
  35. , crypto-cipher-tests
  36. , cipher-blowfish
  37. Benchmark bench-cipher-blowfish
  38. hs-source-dirs: Benchmarks
  39. Main-Is: Benchmarks.hs
  40. type: exitcode-stdio-1.0
  41. Build-depends: base >= 4 && < 5
  42. , bytestring
  43. , criterion
  44. , mtl
  45. , crypto-cipher-types
  46. , crypto-cipher-benchmarks
  47. , cipher-blowfish
  48. source-repository head
  49. type: git
  50. location: git://github.com/vincenthz/hs-crypto-cipher
  51. subdir: cipher-blowfish