name: monad-hash version: 0.1.0.1 synopsis: Monad transformer for incremental hashing description: If your code reads or writes some data in a streaming fashion, i.e. in chunks, you can use this library to compute a hash of the data incrementally. This is good both for constant-memory stream processing and for clean readable code using monads. . See the module documentation for more details. . See the test included in the package tarball for a simple usage example. homepage: http://hub.darcs.net/fr33domlover/monad-hash bug-reports: mailto:fr33domlover@riseup.net license: PublicDomain license-file: COPYING author: fr33domlover maintainer: fr33domlover@riseup.net copyright: ♡ Copying is an act of love. Please copy, reuse and share. category: Control, Monad, Cryptography, Hash build-type: Simple extra-source-files: AUTHORS ChangeLog COPYING INSTALL.md NEWS.md README.md cabal-version: >=1.10 source-repository head type: darcs location: http://hub.darcs.net/fr33domlover/monad-hash library exposed-modules: Control.Monad.Trans.Hash -- other-modules: -- other-extensions: build-depends: base >= 4.8 && < 5 , cryptonite , exceptions , memory , transformers hs-source-dirs: src default-language: Haskell2010 ghc-options: -Wall test-suite test default-language: Haskell2010 type: exitcode-stdio-1.0 hs-source-dirs: test main-is: test.hs build-depends: base , bytestring , cryptonite , monad-hash , transformers