summaryrefslogtreecommitdiff
path: root/Codec/Encryption/OpenPGP/ASCIIArmor/Types.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Codec/Encryption/OpenPGP/ASCIIArmor/Types.hs')
-rw-r--r--Codec/Encryption/OpenPGP/ASCIIArmor/Types.hs16
1 files changed, 8 insertions, 8 deletions
diff --git a/Codec/Encryption/OpenPGP/ASCIIArmor/Types.hs b/Codec/Encryption/OpenPGP/ASCIIArmor/Types.hs
index 8c7ef6f..46416c1 100644
--- a/Codec/Encryption/OpenPGP/ASCIIArmor/Types.hs
+++ b/Codec/Encryption/OpenPGP/ASCIIArmor/Types.hs
@@ -10,14 +10,14 @@ module Codec.Encryption.OpenPGP.ASCIIArmor.Types (
10 10
11import Data.ByteString (ByteString) 11import Data.ByteString (ByteString)
12 12
13data Armor a = Armor (ArmorType a) [(String, String)] ByteString 13data Armor = Armor ArmorType [(String, String)] ByteString
14 | ClearSigned [(String, String)] String (Armor a) 14 | ClearSigned [(String, String)] String Armor
15 deriving (Show, Eq) 15 deriving (Show, Eq)
16 16
17data ArmorType a = ArmorMessage 17data ArmorType = ArmorMessage
18 | ArmorPublicKeyBlock 18 | ArmorPublicKeyBlock
19 | ArmorPrivateKeyBlock 19 | ArmorPrivateKeyBlock
20 | ArmorSplitMessage a a 20 | ArmorSplitMessage ByteString ByteString
21 | ArmorSplitMessageIndefinite a 21 | ArmorSplitMessageIndefinite ByteString
22 | ArmorSignature 22 | ArmorSignature
23 deriving (Show, Eq) 23 deriving (Show, Eq)