File: ASCIIArmor.hs

package info (click to toggle)
haskell-openpgp-asciiarmor 0.1.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 156 kB
  • sloc: haskell: 395; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 550 bytes parent folder | download | duplicates (3)
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 Expat 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)