summaryrefslogtreecommitdiff
path: root/Codec/Encryption/OpenPGP/ASCIIArmor.hs
diff options
context:
space:
mode:
authorClint Adams <clint@debian.org>2012-04-26 20:28:40 -0400
committerClint Adams <clint@debian.org>2012-04-26 20:28:40 -0400
commit8c34729c62ba64c810fbfa73719ae7f7110c0fbe (patch)
treec510a323f4c4a49cfb19ca3ba3132e8a80dc48d1 /Codec/Encryption/OpenPGP/ASCIIArmor.hs
parent1ddca48c27cece9352e85ce6188f697eb9124750 (diff)
More laziness.
Diffstat (limited to 'Codec/Encryption/OpenPGP/ASCIIArmor.hs')
-rw-r--r--Codec/Encryption/OpenPGP/ASCIIArmor.hs10
1 files changed, 6 insertions, 4 deletions
diff --git a/Codec/Encryption/OpenPGP/ASCIIArmor.hs b/Codec/Encryption/OpenPGP/ASCIIArmor.hs
index 6d0c172..fcb7337 100644
--- a/Codec/Encryption/OpenPGP/ASCIIArmor.hs
+++ b/Codec/Encryption/OpenPGP/ASCIIArmor.hs
@@ -4,12 +4,14 @@
4-- (See the LICENSE file). 4-- (See the LICENSE file).
5 5
6module Codec.Encryption.OpenPGP.ASCIIArmor ( 6module Codec.Encryption.OpenPGP.ASCIIArmor (
7 encode 7 decode
8 , decode 8 , decodeLazy
9 , encode
10 , encodeLazy
9 , parseArmor 11 , parseArmor
10 , multipartMerge 12 , multipartMerge
11) where 13) where
12 14
13import Codec.Encryption.OpenPGP.ASCIIArmor.Encode (encode) 15import Codec.Encryption.OpenPGP.ASCIIArmor.Decode (decode, decodeLazy, parseArmor)
14import Codec.Encryption.OpenPGP.ASCIIArmor.Decode (decode, parseArmor) 16import Codec.Encryption.OpenPGP.ASCIIArmor.Encode (encode, encodeLazy)
15import Codec.Encryption.OpenPGP.ASCIIArmor.Multipart (multipartMerge) 17import Codec.Encryption.OpenPGP.ASCIIArmor.Multipart (multipartMerge)