summaryrefslogtreecommitdiff
path: root/Codec/Encryption/OpenPGP/ASCIIArmor.hs
blob: e38738a29b0a7e6891a496b5821da2dc482d6e8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- 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 (
   decode
 , decodeLazy
 , encode
 , encodeLazy
 , parseArmor
 , multipartMerge
) where

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