Copyright (c) 2013, 2014, 2015 Jason Lee @ calccrypto at gmail.com
Please see LICENSE file for license.
- Alex Stapleton (OpenPGP-SDK)
- Auston Sterling - Massive amounts of debugging and programming help
- Jon Callas (RFC 4880)
- Herbert Hanewinkel (hanewin.net)
- Many people on the StackExchange network
- mugwort-rc - Tons of testing code, code style updates, and bugfixes
- pgpdump.net
- PortablePGP
This library was not written for actual use.
Rather, it was meant for learning about the
internals of PGP can easily use/add a few
std::cout
s to see the internal workings.
So if you choose to use it in a real setting where secrecy is required, do so at your own risk.
This is a C++ implementation of the majority of RFC 4880, the OpenPGP Message Format.
The following are the libraries necessary to build OpenPGP:
- GMP (https://gmplib.org/,
sudo apt-get install libgmp-dev
, etc) - bzip2 (http://www.bzip.org/,
sudo apt-get install libbz2-dev
, etc) - zlib (http://www.zlib.net/,
sudo apt-get install zlib1g-dev
, etc)
The purpose of this library is to help clear up the mess that is RFC 4880. It is extremely vague at best, and it took me a long time to figure out most of it. No one should have to go through that. However, knowing how PGP is structured is still good to know.
This library allows for the modification of PGP packets, such as providing incorrect checksums and public key values. That was done on purpose. I used it to test keys I created with known working values. What others do with this capability is none of my concern or responsibility.
This library should be relatively straightforward to use:
Simply #include
whatever functions needed:
Feature | Header |
---|---|
key generation | generatekey.h |
key revocation | revoke.h |
encrypt | encrypt.h |
decrypt | decrypt.h |
sign | sign.h |
verify | verify.h |
Multiple classes inherit from the abstract base class PGP in order to make differentiating PGP block types better in code:
PGP block type | Description |
---|---|
PGPDetachedSignature | detached signatures for files |
PGPKey | base class for OpenPGP key types |
PGPPublicKey | holds public keys; inherits PGPKey |
PGPSecretKey | holds private keys; inherits PGPKey |
PGPMessage | holds OpenPGP Messages |
All these different types are able to read in any PGP data, but will cause problems when used.
PGPCleartextSignature does not inherit from PGP and cannot read non-Cleartext Signature data.
The exec/main.cpp
file provides a simple command line interface,
which can be used as examples on how to use the functions. A lot
of the output was based on/inspired by pgpdump.net and GPG. Build
the command line program with make.
All data structures have some standard functions:
Function | Description |
---|
read | reads data without the respective header information
show | displays the data in human readable form like the way pgpdump.net does it.
raw | returns a string that can be read by the read function.
write | returns a string of the entire data, including extra data, such as header and size.
clone | returns a pointer to a deep copy of the object (mainly used for moving PGP data around).
Ptr | a typedef for std::shared_ptr<T> for the class where the typedef is found.
operator =
and the copy constructor have been overloaded
for the data structures that need deep copy.
To build just the library, run make in OpenPGP/
.
Sometimes, there are excerpts from RFC 4880 in the code. Most of those excerpts are not the full text of the sections. Please refer to the RFC for the full text.
Keyrings were not implemented. Rather, keys are read from the directory used as arguments to functions.
If for some reason the program cannot operate on some data properly, an exception will be thrown.
Tab completion might not work on cygwin