summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
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