12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- -- Initial chunked-crypto.cabal generated by cabal init. For further
- -- documentation, see http://haskell.org/cabal/users-guide/
- name: chunked-crypto
- version: 0.1.0.0
- synopsis: Chunked cryptography operations for lazy and random access to large data.
- description:
- This library contain simple functions that encapsulate streamming
- encryption primitives, supplying encryption of chunked data.
- .
- Most encryption primitives available at libraries do not fit well
- random access and lazy consuption of big files. This library
- provides those features.
- homepage: https://sealgram.com/git/haskell/chunked-crypto
- license: MIT
- license-file: LICENSE
- author: Marcos Dumay de Medeiros
- maintainer: marcos@marcosdumay.com
- -- copyright:
- category: System
- build-type: Simple
- -- extra-source-files:
- cabal-version: >=1.10
- source-repository head
- type: git
- location: https://sealgram.com/git/haskell/chunked-crypto
- branch: master
- source-repository this
- type: git
- location: https://sealgram.com/git/haskell/chunked-crypto
- tag: 0.1.0.0
- library
- exposed-modules:
- Crypto.Chunked,
- Crypto.ChunkedAlgorithms
- -- other-modules:
- -- other-extensions:
- build-depends:
- base >=4.7 && <4.9,
- word8 >= 0.1 && <0.2,
- bytestring >=0.10 && <0.11,
- memory >=0.10 && <0.11,
- cryptonite >=0.10 && <0.11
- hs-source-dirs: src
- default-language: Haskell2010
- Test-suite roundtrips
- type: detailed-0.9
- test-module: RoundTrips
- hs-source-dirs:
- test
- build-depends:
- base >=4.7 && <5.0,
- Cabal >= 1.9.2,
- bytestring >=0.10 && <1.0,
- cryptonite >=0.10 && <0.11,
- chunked-crypto
- other-modules:
- Base
- ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns -threaded
- default-language: Haskell2010
|