blob: 32476458e525b32044e025d30b65a89b1d845019 (
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
59
|
name: openpgp
version: 0.3
cabal-version: >= 1.8
license: OtherLicense
license-file: COPYING
category: Data
copyright: © 2011 Stephen Paul Weber
author: Stephen Paul Weber <singpolyma@singpolyma.net>
maintainer: Stephen Paul Weber <singpolyma@singpolyma.net>
stability: experimental
tested-with: GHC == 7.0.3
synopsis: Implementation of the OpenPGP message format
homepage: http://github.com/singpolyma/OpenPGP-Haskell
bug-reports: http://github.com/singpolyma/OpenPGP-Haskell/issues
build-type: Simple
description:
This is an OpenPGP library inspired by my work on OpenPGP libraries in
Ruby <https://github.com/singpolyma/openpgp>,
PHP <http://github.com/singpolyma/openpgp-php>,
and Python <https://github.com/singpolyma/OpenPGP-Python>.
.
It defines types to represent OpenPGP messages as a series of packets
and then defines instances of Data.Binary for each to facilitate
encoding/decoding.
.
There is also a wrapper around <http://hackage.haskell.org/package/Crypto>
that currently does fingerprint generation, signature generation, and
signature verification (for RSA keys only).
.
It is intended that you use qualified imports with this library. If importing
both modules, something like this will do:
.
> import qualified Data.OpenPGP as OpenPGP
> import qualified Data.OpenPGP.Crypto as OpenPGP
extra-source-files:
README
library
exposed-modules:
Data.OpenPGP
Data.OpenPGP.Crypto
other-modules:
Data.BaseConvert
build-depends:
base == 4.*,
containers,
bytestring,
utf8-string,
binary,
zlib,
bzlib,
Crypto
source-repository head
type: git
location: git://github.com/singpolyma/OpenPGP-Haskell.git
|