summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorStephen Paul Weber <singpolyma@singpolyma.net>2011-08-08 22:08:18 -0500
committerStephen Paul Weber <singpolyma@singpolyma.net>2011-08-08 23:30:18 -0500
commitd236fa95573aa816c777a7e74df3aac10634a8de (patch)
treee835ecbfdbfcad05235feaee893b0237f7152b14 /README
parentaa8529550515d2a1a59adff2fc5dbd4235b92f18 (diff)
Update README
Diffstat (limited to 'README')
-rw-r--r--README9
1 files changed, 8 insertions, 1 deletions
diff --git a/README b/README
index 2fc0ccc..feb4c05 100644
--- a/README
+++ b/README
@@ -2,4 +2,11 @@ OpenPGP-Haskell
2 2
3This is an OpenPGP library inspired by my work on OpenPGP-PHP <http://github.com/bendiken/openpgp-php>. 3This is an OpenPGP library inspired by my work on OpenPGP-PHP <http://github.com/bendiken/openpgp-php>.
4 4
5It defines types Message and Packet to represent OpenPGP Messages as series of OpenPGP packets and then defines instances of Binary for each to facilitate encoding/decoding. 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.
6
7There is also a wrapper around <http://hackage.haskell.org/package/Crypto> that currently does fingerprint generation and signature verification.
8
9It is intended that you use qualified imports with this library. If importing both modules, something like this will do:
10
11> import qualified Data.OpenPGP as OpenPGP
12> import qualified Data.OpenPGP.Crypto as OpenPGP