summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorStephen Paul Weber <singpolyma@singpolyma.net>2011-08-09 22:54:32 -0500
committerStephen Paul Weber <singpolyma@singpolyma.net>2011-08-09 22:54:32 -0500
commitc6d2154588ac13374d570f498dc5c8dc7c5f4036 (patch)
tree86c2c584bbb96de1e28e1f03a47f2ef2b72727d7 /README
parenta4b22e4d7606699f6b10238aa245fa53be339d3e (diff)
README update
Diffstat (limited to 'README')
-rw-r--r--README17
1 files changed, 11 insertions, 6 deletions
diff --git a/README b/README
index feb4c05..2272024 100644
--- a/README
+++ b/README
@@ -1,12 +1,17 @@
1OpenPGP-Haskell 1This is an OpenPGP library inspired by my work on OpenPGP libraries in
2Ruby <https://github.com/singpolyma/openpgp>,
3PHP <http://github.com/singpolyma/openpgp-php>,
4and Python <https://github.com/singpolyma/OpenPGP-Python>.
2 5
3This is an OpenPGP library inspired by my work on OpenPGP-PHP <http://github.com/bendiken/openpgp-php>. 6It defines types to represent OpenPGP messages as a series of packets
7and then defines instances of Data.Binary for each to facilitate
8encoding/decoding.
4 9
5It defines types Message and Packet to represent OpenPGP messages as series of packets and then defines instances of Data.Binary for each to facilitate encoding/decoding. 10There is also a wrapper around <http://hackage.haskell.org/package/Crypto>
11that currently does fingerprint generation and signature verification.
6 12
7There is also a wrapper around <http://hackage.haskell.org/package/Crypto> that currently does fingerprint generation and signature verification. 13It is intended that you use qualified imports with this library. If importing
8 14both modules, something like this will do:
9It is intended that you use qualified imports with this library. If importing both modules, something like this will do:
10 15
11> import qualified Data.OpenPGP as OpenPGP 16> import qualified Data.OpenPGP as OpenPGP
12> import qualified Data.OpenPGP.Crypto as OpenPGP 17> import qualified Data.OpenPGP.Crypto as OpenPGP