summaryrefslogtreecommitdiff
path: root/Codec/Encryption/OpenPGP/ASCIIArmor.hs
diff options
context:
space:
mode:
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)