summaryrefslogtreecommitdiff
path: root/Codec/Encryption/OpenPGP/ASCIIArmor.hs
diff options
context:
space:
mode:
authorClint Adams <clint@debian.org>2012-04-01 22:19:21 -0400
committerClint Adams <clint@debian.org>2012-04-01 22:19:21 -0400
commite4a8fe59707fc33ef26e1ca1dec4299a0d7ba6bf (patch)
tree5d8d5a5e36e459f7a83f0d46a1478b0615dbcb50 /Codec/Encryption/OpenPGP/ASCIIArmor.hs
parente295e4669be452c3aa855065cf6816c68d42df7a (diff)
ASCII armor support
Diffstat (limited to 'Codec/Encryption/OpenPGP/ASCIIArmor.hs')
-rw-r--r--Codec/Encryption/OpenPGP/ASCIIArmor.hs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Codec/Encryption/OpenPGP/ASCIIArmor.hs b/Codec/Encryption/OpenPGP/ASCIIArmor.hs
new file mode 100644
index 0000000..62440ae
--- /dev/null
+++ b/Codec/Encryption/OpenPGP/ASCIIArmor.hs
@@ -0,0 +1,13 @@
1-- ASCIIArmor.hs: OpenPGP (RFC4880) ASCII armor implementation
2-- Copyright Ⓒ 2012 Clint Adams
3-- This software is released under the terms of the Expat (MIT) license.
4-- (See the LICENSE file).
5
6module Codec.Encryption.OpenPGP.ASCIIArmor (
7 armor
8 , decodeArmor
9 , parseArmor
10) where
11
12import Codec.Encryption.OpenPGP.ASCIIArmor.Encode (armor)
13import Codec.Encryption.OpenPGP.ASCIIArmor.Decode (decodeArmor, parseArmor)