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

module Codec.Encryption.OpenPGP.ASCIIArmor (
   armor
 , decodeArmor
 , parseArmor
) where

import Codec.Encryption.OpenPGP.ASCIIArmor.Encode (armor)
import Codec.Encryption.OpenPGP.ASCIIArmor.Decode (decodeArmor, parseArmor)