1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
Name: cipher-camellia
Version: 0.0.2
Description: Camellia block cipher primitives
License: BSD3
License-file: LICENSE
Copyright: Vincent Hanquez <vincent@snarc.org>
Author: Vincent Hanquez <vincent@snarc.org>
Maintainer: Vincent Hanquez <vincent@snarc.org>
Synopsis: Camellia block cipher primitives
Category: Cryptography
Build-Type: Simple
Homepage: http://github.com/vincenthz/hs-crypto-cipher
Cabal-Version: >=1.8
Library
Build-Depends: base >= 4 && < 5
, bytestring
, vector
, byteable
, securemem >= 0.1.2
, crypto-cipher-types >= 0.0.3 && < 0.1
Exposed-modules: Crypto.Cipher.Camellia
Other-modules: Crypto.Cipher.Camellia.Primitive
ghc-options: -Wall -fwarn-tabs
Test-Suite test-cipher-camellia
type: exitcode-stdio-1.0
hs-source-dirs: Tests
Main-Is: Tests.hs
Build-depends: base >= 4 && < 5
, bytestring
, QuickCheck >= 2
, test-framework >= 0.3.3
, test-framework-quickcheck2 >= 0.2.9
, byteable
, cipher-camellia
, crypto-cipher-types
, crypto-cipher-tests
Benchmark bench-cipher-camellia
hs-source-dirs: Benchmarks
Main-Is: Benchmarks.hs
type: exitcode-stdio-1.0
Build-depends: base >= 4 && < 5
, bytestring
, criterion
, mtl
, cipher-camellia
, crypto-cipher-types
, crypto-cipher-benchmarks
source-repository head
type: git
location: git://github.com/vincenthz/hs-crypto-cipher
subdir: cipher-camellia
|