summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorStephen Paul Weber <singpolyma@singpolyma.net>2012-04-25 17:19:07 -0500
committerStephen Paul Weber <singpolyma@singpolyma.net>2012-04-25 17:19:07 -0500
commit6b743222684f2b8151dfbdef42f0dc890e590c41 (patch)
tree77b5ae031d2b863f03399ba9a5b56ba4478d2ab2 /README
parent7b3232778f284dd4dd3a6f3287bcbe1fbe10b010 (diff)
Split OpenPGP.Crypto out into a seperate package
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