-
Notifications
You must be signed in to change notification settings - Fork 4
/
Paillier.cabal
41 lines (35 loc) · 1.18 KB
/
Paillier.cabal
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
name: Paillier
version: 0.1.0.3
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.PaillierRealNum
Crypto.Paillier
default-language: Haskell2010
build-depends: base >=4.6, crypto-numbers >= 0.2.2, crypto-random >= 0.0.7
executable paillier
main-is: Main.hs
build-depends: base >=4.6, cmdargs >= 0.10.5, Paillier
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, crypto-numbers >= 0.2.2, crypto-random >= 0.0.7,
Paillier
default-language: Haskell2010