summaryrefslogtreecommitdiff
path: root/Codec/Encryption/OpenPGP/ASCIIArmor.hs
diff options
context:
space:
mode:
authorClint Adams <clint@debian.org>2012-04-25 19:10:27 -0400
committerClint Adams <clint@debian.org>2012-04-25 19:10:27 -0400
commitf06c3f713f99c9ea09a76728ffce2c6e1c957070 (patch)
tree647c5c500b0713ff73533988944eef3bb4ca1bf8 /Codec/Encryption/OpenPGP/ASCIIArmor.hs
parent5ed645493e10190f7cddd753bb058e8487037549 (diff)
Handle decoding multiple ASCII armor messages from a single bytestream.
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 74c8c69..075a481 100644
--- a/Codec/Encryption/OpenPGP/ASCIIArmor.hs
+++ b/Codec/Encryption/OpenPGP/ASCIIArmor.hs
@@ -5,9 +5,9 @@
5 5
6module Codec.Encryption.OpenPGP.ASCIIArmor ( 6module Codec.Encryption.OpenPGP.ASCIIArmor (
7 armor 7 armor
8 , decodeArmor 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 (armor)
13import Codec.Encryption.OpenPGP.ASCIIArmor.Decode (decodeArmor, parseArmor) 13import Codec.Encryption.OpenPGP.ASCIIArmor.Decode (decode, parseArmor)