summaryrefslogtreecommitdiff
path: root/openpgp-util.cabal
blob: 8c0e44fde4475421f4b981cc059806bd792bc27c (plain)
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
56
57
58
name:            openpgp-util
version:         0.1
cabal-version:   >= 1.8
license:         OtherLicense
license-file:    COPYING
category:        Cryptography
copyright:       © 2012 Stephen Paul Weber
                 © 2013 Joseph Crayne
author:          Stephen Paul Weber <singpolyma@singpolyma.net>
maintainer:      Joe Crayne <joe@jerkface.net>
stability:       experimental
tested-with:     GHC == 7.0.3
synopsis:        Implement cryptography for OpenPGP using libraries compatible
                 with Vincent Hanquez's Haskell Crypto Platform
homepage:        http://github.com/joecrayne/openpgp-util
bug-reports:     http://github.com/joecrayne/openpgp-util/issues
build-type:      Simple
description:
        Fingerprint generation, signature generation, signature verification,
        and secret key decryption for OpenPGP Packets.
        .
        It is indended to be used with <http://hackage.haskell.org/package/openpgp>
        .
        It is intended that you use qualified imports with this library.
        .
        > import qualified Data.OpenPGP.Util as OpenPGP

library
        exposed-modules:
                Data.OpenPGP.Util
        other-modules:
                Data.OpenPGP.Util.Fingerprint
                Data.OpenPGP.Util.Base
                Data.OpenPGP.Util.Verify
                Data.OpenPGP.Util.Sign
                Data.OpenPGP.Util.DecryptSecretKey

        build-depends:
                base == 4.*,
                transformers,
                bytestring,
                time >= 1.4,
                binary >= 0.5.1.1,
                openpgp >= 0.4,
                crypto-random >= 0.0.7,
                cryptohash >= 0.9.1,
                crypto-pubkey >= 0.2.3,
                crypto-pubkey-types >= 0.4.1,
                cipher-cast5 -any,
                byteable,
                crypto-cipher-types >= 0.0.7,
                cipher-blowfish,
                cipher-aes >= 0.2.6


source-repository head
        type:     git
        location: git://github.com/joecrayne/openpgp-util.git