-- 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)