openpgp: Implementation of the OpenPGP message format

[ data, library ] [ Propose Tags ]

This is an OpenPGP library inspired by my work on OpenPGP libraries in Ruby https://github.com/singpolyma/openpgp, PHP http://github.com/singpolyma/openpgp-php, and Python https://github.com/singpolyma/OpenPGP-Python.

It defines types to represent OpenPGP messages as a series of packets and then defines instances of Data.Binary for each to facilitate encoding/decoding.

For performing cryptography, see http://hackage.haskell.org/package/openpgp-crypto-api or http://hackage.haskell.org/package/openpgp-Crypto

For dealing with ASCII armor, see http://hackage.haskell.org/package/openpgp-asciiarmor

It is intended that you use qualified imports with this library.

import qualified Data.OpenPGP as OpenPGP

[Skip to Readme]

Modules

[Index]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.6.1
Dependencies base (>=4 && <4.11), binary (>=0.6.4.0), bytestring, bzlib, utf8-string, zlib [details]
License LicenseRef-OtherLicense
Copyright © 2011-2012 Stephen Paul Weber
Author Stephen Paul Weber <singpolyma@singpolyma.net>
Maintainer Stephen Paul Weber <singpolyma@singpolyma.net>
Revised Revision 1 made by HerbertValerioRiedel at 2018-12-30T13:58:48Z
Category Data
Home page http://github.com/singpolyma/OpenPGP-Haskell
Bug tracker http://github.com/singpolyma/OpenPGP-Haskell/issues
Source repo head: git clone git://github.com/singpolyma/OpenPGP-Haskell.git
Uploaded by StephenWeber at 2013-01-05T19:30:52Z
Distributions
Reverse Dependencies 4 direct, 0 indirect [details]
Downloads 6089 total (11 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for openpgp-0.6

[back to package description]
This is an OpenPGP library inspired by my work on OpenPGP libraries in
Ruby <https://github.com/singpolyma/openpgp>,
PHP <http://github.com/singpolyma/openpgp-php>,
and Python <https://github.com/singpolyma/OpenPGP-Python>.

It defines types to represent OpenPGP messages as a series of packets
and then defines instances of Data.Binary for each to facilitate
encoding/decoding.

For performing cryptography, see
<http://hackage.haskell.org/package/openpgp-crypto-api> or
<http://hackage.haskell.org/package/openpgp-Crypto>

For dealing with ASCII armor, see
<http://hackage.haskell.org/package/openpgp-asciiarmor>

It is intended that you use qualified imports with this library.

> import qualified Data.OpenPGP as OpenPGP