chunked-crypto.cabal 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. source-repository head
  24. type: git
  25. location: https://sealgram.com/git/haskell/chunked-crypto
  26. branch: master
  27. library
  28. exposed-modules:
  29. Crypto.Chunked,
  30. Crypto.ChunkedAlgorithms
  31. -- other-modules:
  32. -- other-extensions:
  33. build-depends:
  34. base >=4.7 && <4.8,
  35. word8 >= 0.1 && <0.2,
  36. bytestring >=0.10 && <0.11,
  37. memory >=0.10 && <0.11,
  38. cryptonite >=0.10 && <0.11
  39. hs-source-dirs: src
  40. default-language: Haskell2010
  41. Test-suite roundtrips
  42. type: detailed-0.9
  43. test-module: RoundTrips
  44. hs-source-dirs:
  45. test
  46. build-depends:
  47. base >=4.7 && <5.0,
  48. Cabal >= 1.9.2,
  49. bytestring >=0.10 && <1.0,
  50. cryptonite >=0.10 && <0.11,
  51. chunked-crypto
  52. other-modules:
  53. Base
  54. ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns -threaded
  55. default-language: Haskell2010