summaryrefslogtreecommitdiff
path: root/Codec/Encryption/OpenPGP/ASCIIArmor.hs
blob: 6d0c17200f026a86f89c027b88fc4b0342b8e1db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- ASCIIArmor.hs: OpenPGP (RFC4880) ASCII armor implementation
-- Copyright Ⓒ 2012  Clint Adams
-- This software is released under the terms of the ISC license.
-- (See the LICENSE file).

module Codec.Encryption.OpenPGP.ASCIIArmor (
   encode
 , decode
 , parseArmor
 , multipartMerge
) where

import Codec.Encryption.OpenPGP.ASCIIArmor.Encode (encode)
import Codec.Encryption.OpenPGP.ASCIIArmor.Decode (decode, parseArmor)
import Codec.Encryption.OpenPGP.ASCIIArmor.Multipart (multipartMerge)