Paillier-0.1.0.2: Paillier.cabal
name: Paillier
version: 0.1.0.2
synopsis: a simple Paillier cryptosystem
description: a simple Paillier cryptosystem
license: BSD3
license-file: LICENSE
author: Li-Ting Tsai
maintainer: and.liting@gmail.com
category: Math
build-type: Simple
cabal-version: >=1.10
source-repository this
type: git
location: https://github.com/onemouth/HsPaillier.git
tag: 0.1.0.2
library
hs-source-dirs: src
exposed-modules: Crypto.Paillier
default-language: Haskell2010
build-depends: base >=4.6 && <4.7, crypto-numbers >= 0.2.2, crypto-random >= 0.0.7
--executable paillier
-- main-is: Main.hs
-- build-depends: base >=4.6 && <4.7, cmdargs >= 0.10.5, Paillier >= 0.1.0.0
-- default-language: Haskell2010
Test-suite test-Paillier
type: exitcode-stdio-1.0
hs-source-dirs: src,test
main-is: TestMain.hs
build-depends: QuickCheck >= 2.6, HUnit, test-framework-th, test-framework,
test-framework-quickcheck2,
base >=4.6 && <4.7, crypto-numbers >= 0.2.2, crypto-random >= 0.0.7,
Paillier
default-language: Haskell2010