-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpanda.cabal
28 lines (25 loc) · 1019 Bytes
/
panda.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
name: panda
version: 4
synopsis: Panda Key Exchange is a implimentation of the Diffie-Hellman key exchange.
description: Panda Key Exchange uses the Diffie-Hellman key exchange to generate a common passcode between two computers over a unsecured network.
license: GPL-3
license-file: LICENSE
author: Graham Pegg
maintainer: [email protected]
category: Cryptography
build-type: Simple
cabal-version: >=1.8
executable panda
main-is: Main.hs
build-depends: base, options ==1.2.*, split ==0.2.*, HTTP, network
hs-source-dirs: src
Test-Suite checkSimplePrime
type: exitcode-stdio-1.0
main-is: checkSimplePrime.hs
hs-source-dirs: src, util/tests
build-depends: base, split ==0.2.*
Test-Suite checkComplexPrime
type: exitcode-stdio-1.0
main-is: checkComplexPrime.hs
hs-source-dirs: src, util/tests
build-depends: base, split ==0.2.*