packages feed

AES-0.0.1: AES.cabal

Name: AES
Synopsis: Fast AES encryption/decryption for bytestrings
Description: A zero-copy binding to Brian Gladman's AES implementation
Version: 0.0.1
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/aes.h, cbits/aesopt.h, cbits/aestab.h,
                    cbits/brg_endian.h, cbits/brg_types.h

Library
  Build-Depends:
        base >= 3 && < 5 , bytestring, monads-tf >= 0.0.0.1 && < 0.1, transformers >= 0.1.4.0 && < 0.2
  Extensions:
        ForeignFunctionInterface,
        ViewPatterns,
        Rank2Types,
        EmptyDataDecls
  Exposed-Modules:
        Codec.Crypto.AES,
        Codec.Crypto.AES.ST,
        Codec.Crypto.AES.IO

  ghc-options: -Wall

  C-sources: cbits/aescrypt.c, cbits/aeskey.c, cbits/aestab.c, cbits/aes_modes.c
  Include-Dirs: cbits