packages feed

SHA2-0.1.0: SHA2.cabal

Name: SHA2
Synopsis: Fast, incremental SHA hashing for bytestrings
Description: A zero-copy binding to Aaron Gifford's SHA implementation, including a copy of that implementation
Version: 0.1.0
License: BSD3
License-file: COPYING
Copyright: Copyright (c) 2009 University of Tromsø
Author: Svein Ove Aas <svein.ove@aas.no>
Maintainer: Svein Ove Aas <svein.ove@aas.no>
Stability: provisional
Category: Cryptography
Tested-With: GHC == 6.12-rc2
Cabal-Version: >= 1.6
Build-Type: Simple
Extra-source-files: cbits/sha2.h, cbits/README

Library
  Build-Depends:
        base >= 4 && < 5 , bytestring, monads-tf >= 0.0.0.1 && < 0.1,
        transformers >= 0.1.4.0 && < 0.2, AES >= 0.2 && < 0.3
  Extensions:
        ForeignFunctionInterface,
        ViewPatterns,
        Rank2Types,
        EmptyDataDecls
  Exposed-Modules:
        Codec.Digest.SHA,
        Codec.Digest.SHA.Monad,
        Codec.Digest.SHA.IO,
        Codec.Digest.SHA.Misc

  ghc-options: -Wall

  cpp-options: -DSHA2_USE_INTTYPES_H
  if os(windows)
     cpp-options: -DBYTE_ORDER=LITTLE_ENDIAN

  C-sources: cbits/sha2.c
  Include-Dirs: cbits