| CARVIEW |
Select Language
HTTP/1.1 200 OK
Connection: keep-alive
Server: nginx/1.24.0 (Ubuntu)
Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=300
Content-Encoding: gzip
Via: 1.1 varnish, 1.1 varnish
Accept-Ranges: bytes
Age: 0
Date: Sun, 18 Jan 2026 01:06:33 GMT
X-Served-By: cache-dfw-ktki8620073-DFW, cache-bom-vanm7210097-BOM
X-Cache: MISS, MISS
X-Cache-Hits: 0, 0
X-Timer: S1768698393.846415,VS0,VE836
Vary: Accept, Accept-Encoding
transfer-encoding: chunked
openpgp-crypto-api: Implement cryptography for OpenPGP using crypto-api compatible libraries
[Skip to Readme]
openpgp-crypto-api: Implement cryptography for OpenPGP using crypto-api compatible libraries
This is a wrapper around https://hackage.haskell.org/package/crypto-api and related libraries that currently does fingerprint generation, signature generation, signature verification, and both asymmetric and symmetric encryption and decryption.
It is indended to be used with https://hackage.haskell.org/package/openpgp
It is intended that you use qualified imports with this library.
import qualified Data.OpenPGP.CryptoAPI as OpenPGP
[Skip to Readme]
Downloads
- openpgp-crypto-api-0.6.3.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 0.3, 0.4, 0.6, 0.6.1, 0.6.2, 0.6.3 |
|---|---|
| Dependencies | base (>=4 && <5), binary (>=0.6.4.0), bytestring, cereal, crypto-api (>=0.12.2.2), cryptocipher (>=0.3.6 && <=0.3.7), cryptohash (<=0.9.1), openpgp (>=0.6), tagged, transformers [details] |
| Tested with | ghc ==7.0.3 |
| License | LicenseRef-OtherLicense |
| Copyright | © 2012 Stephen Paul Weber |
| Author | Stephen Paul Weber <singpolyma@singpolyma.net> |
| Maintainer | Stephen Paul Weber <singpolyma@singpolyma.net> |
| Uploaded | by StephenWeber at 2013-10-19T16:49:26Z |
| Category | Cryptography |
| Home page | https://github.com/singpolyma/OpenPGP-CryptoAPI |
| Bug tracker | https://github.com/singpolyma/OpenPGP-CryptoAPI/issues |
| Source repo | head: git clone git://github.com/singpolyma/OpenPGP-CryptoAPI.git |
| Distributions | |
| Reverse Dependencies | 2 direct, 0 indirect [details] |
| Downloads | 5320 total (28 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-crypto-api-0.6.3
[back to package description]This is a wrapper around <https://hackage.haskell.org/package/crypto-api> and related libraries that currently does fingerprint generation, signature generation, signature verification, and both asymmetric and symmetric encryption and decryption. It is indended to be used with <https://hackage.haskell.org/package/openpgp> It is intended that you use qualified imports with this library. > import qualified Data.OpenPGP.CryptoAPI as OpenPGP