summaryrefslogtreecommitdiff
path: root/Data/OpenPGP/Util.hs
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2013-12-14 22:34:26 -0500
committerjoe <joe@jerkface.net>2013-12-14 22:34:26 -0500
commitce0d32ef83ccf15198bdd5248faa02abbcf2f769 (patch)
tree96155973d7af58bbb79a8f67a21f646af46cb47f /Data/OpenPGP/Util.hs
New package openpgp-util as alternative to OpenPGP-CryptoAPI.
Diffstat (limited to 'Data/OpenPGP/Util.hs')
-rw-r--r--Data/OpenPGP/Util.hs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Data/OpenPGP/Util.hs b/Data/OpenPGP/Util.hs
new file mode 100644
index 0000000..c675ec2
--- /dev/null
+++ b/Data/OpenPGP/Util.hs
@@ -0,0 +1,12 @@
1module Data.OpenPGP.Util
2 ( fingerprint
3 , decryptSecretKey
4 , verify
5 , pgpSign
6 ) where
7
8import Data.OpenPGP.Util.Fingerprint
9import Data.OpenPGP.Util.Sign
10import Data.OpenPGP.Util.Verify
11import Data.OpenPGP.Util.DecryptSecretKey
12