summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README8
1 files changed, 2 insertions, 6 deletions
diff --git a/README b/README
index b5d1332..0bed65f 100644
--- a/README
+++ b/README
@@ -7,12 +7,8 @@ It defines types to represent OpenPGP messages as a series of packets
7and then defines instances of Data.Binary for each to facilitate 7and then defines instances of Data.Binary for each to facilitate
8encoding/decoding. 8encoding/decoding.
9 9
10There is also a wrapper around <http://hackage.haskell.org/package/Crypto> 10For performing cryptography, see <http://hackage.haskell.org/openpgp-Crypto>
11that currently does fingerprint generation, signature generation, and
12signature verification (for RSA keys only).
13 11
14It is intended that you use qualified imports with this library. If importing 12It is intended that you use qualified imports with this library.
15both modules, something like this will do:
16 13
17> import qualified Data.OpenPGP as OpenPGP 14> import qualified Data.OpenPGP as OpenPGP
18> import qualified Data.OpenPGP.Crypto as OpenPGP