summaryrefslogtreecommitdiff
path: root/Codec/Encryption/OpenPGP/ASCIIArmor.hs
diff options
context:
space:
mode:
authorClint Adams <clint@debian.org>2012-04-25 19:26:58 -0400
committerClint Adams <clint@debian.org>2012-04-25 19:27:26 -0400
commit4a0bb47803be6be43b8bb5c62f302019a25f9fd1 (patch)
tree53c0f2ae494136395401d6dc73f4409cba4f0637 /Codec/Encryption/OpenPGP/ASCIIArmor.hs
parentf06c3f713f99c9ea09a76728ffce2c6e1c957070 (diff)
Encode multiple Armors into one ByteString.
Diffstat (limited to 'Codec/Encryption/OpenPGP/ASCIIArmor.hs')
-rw-r--r--Codec/Encryption/OpenPGP/ASCIIArmor.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Codec/Encryption/OpenPGP/ASCIIArmor.hs b/Codec/Encryption/OpenPGP/ASCIIArmor.hs
index 075a481..26d58dd 100644
--- a/Codec/Encryption/OpenPGP/ASCIIArmor.hs
+++ b/Codec/Encryption/OpenPGP/ASCIIArmor.hs
@@ -4,10 +4,10 @@
4-- (See the LICENSE file). 4-- (See the LICENSE file).
5 5
6module Codec.Encryption.OpenPGP.ASCIIArmor ( 6module Codec.Encryption.OpenPGP.ASCIIArmor (
7 armor 7 encode
8 , decode 8 , decode
9 , parseArmor 9 , parseArmor
10) where 10) where
11 11
12import Codec.Encryption.OpenPGP.ASCIIArmor.Encode (armor) 12import Codec.Encryption.OpenPGP.ASCIIArmor.Encode (encode)
13import Codec.Encryption.OpenPGP.ASCIIArmor.Decode (decode, parseArmor) 13import Codec.Encryption.OpenPGP.ASCIIArmor.Decode (decode, parseArmor)