chunked-crypto.cabal 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. -- Initial chunked-crypto.cabal generated by cabal init. For further
  2. -- documentation, see http://haskell.org/cabal/users-guide/
  3. name: chunked-crypto
  4. version: 0.1.0.0
  5. synopsis: Chunked cryptography operations for lazy and random access to large data.
  6. description:
  7. This library contain simple functions that encapsulate streamming
  8. encryption primitives, supplying encryption of chunked data.
  9. .
  10. Most encryption primitives available at libraries do not fit well
  11. random access and lazy consuption of big files. This library
  12. provides those features.
  13. homepage: https://sealgram.com/git/haskell/chunked-crypto
  14. license: MIT
  15. license-file: LICENSE
  16. author: Marcos Dumay de Medeiros
  17. maintainer: marcos@marcosdumay.com
  18. -- copyright:
  19. category: System
  20. build-type: Simple
  21. -- extra-source-files:
  22. cabal-version: >=1.10
  23. library
  24. exposed-modules:
  25. Crypto.Chunked,
  26. Crypto.ChunkedAlgorithms
  27. -- other-modules:
  28. -- other-extensions:
  29. build-depends:
  30. base >=4.7 && <4.8,
  31. word8 >= 0.1 && <0.2,
  32. bytestring >=0.10 && <0.11,
  33. memory >=0.10 && <0.11,
  34. cryptonite >=0.10 && <0.11
  35. hs-source-dirs: src
  36. default-language: Haskell2010
  37. Test-suite roundtrips
  38. type: detailed-0.9
  39. test-module: RoundTrips
  40. hs-source-dirs:
  41. test
  42. build-depends:
  43. base >=4.7 && <5.0,
  44. Cabal >= 1.9.2,
  45. bytestring >=0.10 && <1.0,
  46. cryptonite >=0.10 && <0.11,
  47. chunked-crypto
  48. other-modules:
  49. Base
  50. ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns -threaded
  51. default-language: Haskell2010