/cryptocipher.cabal

http://github.com/vincenthz/hs-cryptocipher · Cabal · 93 lines · 87 code · 6 blank · 0 comment · 10 complexity · 0274be78dc63c09dedb158afbe33c300 MD5 · raw file

  1. Name: cryptocipher
  2. Version: 0.3.5
  3. Description: Symmetrical Block, Stream and PubKey Ciphers
  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: Symmetrical Block, Stream and PubKey Ciphers
  10. Category: Cryptography
  11. Build-Type: Simple
  12. Homepage: http://github.com/vincenthz/hs-cryptocipher
  13. Cabal-Version: >=1.8
  14. Extra-Source-Files: Tests/*.hs
  15. cbits/aes/aes.h
  16. Flag benchmark
  17. Description: Build benchmarks
  18. Default: False
  19. Flag aesni
  20. Description: Use fast aesni operations that are cpu dependant
  21. Default: False
  22. Library
  23. Build-Depends: base >= 4 && < 5
  24. , bytestring
  25. , vector >= 0.7
  26. , cpu >= 0.1 && < 0.2
  27. , ghc-prim
  28. , primitive
  29. , crypto-api >= 0.5
  30. , crypto-pubkey-types >= 0.1 && < 0.2
  31. , tagged
  32. , cereal
  33. Exposed-modules: Crypto.Cipher.RC4
  34. Crypto.Cipher.AES
  35. Crypto.Cipher.AES.Haskell
  36. Crypto.Cipher.Blowfish
  37. Crypto.Cipher.Camellia
  38. Crypto.Cipher.RSA
  39. Crypto.Cipher.DSA
  40. Crypto.Cipher.DH
  41. other-modules: Number.ModArithmetic
  42. Number.Serialize
  43. Number.Generate
  44. Number.Basic
  45. Number.Polynomial
  46. Number.Prime
  47. Crypto.Cipher.ElGamal
  48. ghc-options: -Wall
  49. if flag(aesni)
  50. cpp-options: -DHAVE_AESNI
  51. Exposed-modules: Crypto.Cipher.AES.X86NI
  52. C-sources: cbits/aes/x86ni.c
  53. CC-options: -mssse3 -maes
  54. Test-Suite test-cryptocipher
  55. type: exitcode-stdio-1.0
  56. hs-source-dirs: Tests
  57. Main-Is: tests.hs
  58. Build-depends: base >= 4 && < 5
  59. , crypto-api >= 0.5
  60. , cryptocipher
  61. , bytestring
  62. , cryptohash
  63. , vector
  64. , entropy
  65. , QuickCheck >= 2
  66. , test-framework >= 0.3.3 && < 0.7
  67. , test-framework-quickcheck2 >= 0.2.9 && < 0.3
  68. Executable Benchmarks
  69. hs-source-dirs: Benchmarks
  70. Main-Is: Benchmarks.hs
  71. if flag(benchmark)
  72. Buildable: True
  73. Build-depends: base >= 4 && < 5
  74. , bytestring
  75. , crypto-api
  76. , cryptocipher
  77. , criterion
  78. , mtl
  79. else
  80. Buildable: False
  81. if flag(aesni)
  82. cpp-options: -DHAVE_AESNI
  83. C-sources: cbits/aes/x86ni.c
  84. CC-options: -mssse3 -maes
  85. source-repository head
  86. type: git
  87. location: git://github.com/vincenthz/hs-cryptocipher