summaryrefslogtreecommitdiff
path: root/openpgp-util.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp-util.cabal')
-rw-r--r--openpgp-util.cabal51
1 files changed, 51 insertions, 0 deletions
diff --git a/openpgp-util.cabal b/openpgp-util.cabal
new file mode 100644
index 0000000..8d476d2
--- /dev/null
+++ b/openpgp-util.cabal
@@ -0,0 +1,51 @@
1name: openpgp-util
2version: 0.1
3cabal-version: >= 1.8
4license: OtherLicense
5license-file: COPYING
6category: Cryptography
7copyright: © 2012 Stephen Paul Weber
8 © 2013 Joseph Crayne
9author: Stephen Paul Weber <singpolyma@singpolyma.net>
10maintainer: Joe Crayne <joe@jerkface.net>
11stability: experimental
12tested-with: GHC == 7.0.3
13synopsis: Implement cryptography for OpenPGP using libraries compatible
14 with Vincent Hanquez's Haskell Crypto Platform
15homepage: http://github.com/joecrayne/openpgp-util
16bug-reports: http://github.com/joecrayne/openpgp-util/issues
17build-type: Simple
18description:
19 Fingerprint generation, signature generation, signature verification,
20 and secret key decryption for OpenPGP Packets.
21 .
22 It is indended to be used with <http://hackage.haskell.org/package/openpgp>
23 .
24 It is intended that you use qualified imports with this library.
25 .
26 > import qualified Data.OpenPGP.Util as OpenPGP
27
28library
29 exposed-modules:
30 Data.OpenPGP.Util
31
32 build-depends:
33 base == 4.*,
34 transformers,
35 bytestring,
36 time >= 1.4,
37 binary >= 0.6.4.0,
38 openpgp >= 0.6,
39 crypto-random >= 0.0.7,
40 cryptohash >= 0.9.1,
41 crypto-pubkey >= 0.2.3,
42 cipher-cast5 -any,
43 byteable,
44 crypto-cipher-types >= 0.0.9,
45 cipher-blowfish,
46 cipher-aes >= 0.2.6
47
48
49source-repository head
50 type: git
51 location: git://github.com/joecrayne/openpgp-util.git