rPGP
OpenPGP implemented in pure Rust, permissively licensed
rPGP is a pure Rust implementation of OpenPGP.
rPGP implements OpenPGP as specified in RFC9580, including the commonly used v4 formats, as well as the latest v6 key formats and AEAD encryption mechanisms. All formats specified in the historical RFCs RFC4880 and RFC6637, such as v3 keys and signatures, are supported as well.
See IMPL_STATUS.md
for more details on the implemented PGP features and
openpgp.md
for a rough taxonomy.
rPGP offers a flexible low-level API and gives users the ability to build higher level PGP tooling in the most compatible way possible. Additionally, it fully supports all functionality required by the Autocrypt 1.1 e-mail encryption specification.
Notable Users & Libraries built using rPGP
- Delta Chat: Cross-platform messaging app that works over e-mail
rpm
: A pure rust library for parsing and creating RPM filesrpgpie
: An experimental high level OpenPGP APIrsop
: A SOP CLI tool based on rPGP and rpgpiedebian-packaging
: a library crate for dealing with Debian packages
Don't see your project here? Please send a PR :)
Usage
> cargo
Load a public key and verify an inline-signed message
use fs;
use ;
Generate and verify a detached signature with an OpenPGP keypair
use SystemTime;
use ;
use ;
use ;
Cargo features
bzip2
: Enables bzip2 supportasm
: Enables assembly based optimizationswasm
: Allows building for wasmmalformed-artifact-compat
: Be lenient towards some types of malformed artifacts (erroneously formed ECDH PKESK; invalidly short first partial body segments). Most users will NOT need this feature, should be disabled by default!draft-pqc
: Enables implementation of draft-ietf-openpgp-pqc-12 (This is unstable and can have breaking changes in patch releases. DO NOT USE IN PRODUCTION!)
Current Status
Last updated September 2024
- Implementation Status:
IMPL_STATUS.md
- Security Status:
STATUS_SECURITY.md
- Supported Platforms:
PLATFORMS.md
FAQs
See FAQ.md
.
OpenPGP Versions and Features
See openpgp.md
.
rPGP is a library for application developers
rPGP aims to make it easy for application developers to incorporate OpenPGP functionality into their projects.
Note that the OpenPGP format and its semantics are relatively complex. We recommend the text "OpenPGP for application developers" for initial orientation.
Independently, we welcome questions in the rPGP issue tracker.
rPGP is a low-level OpenPGP library
rPGP offers abstractions for handling the formats and mechanisms specified in RFC 9580. However, it offers them as relatively low-level building blocks, and doesn't attempt to ensure that users can not apply them unsafely.
rPGP allows following almost all parts of the OpenPGP specification, but the APIs are low level building blocks and do not claim that using them is (a) secure or (b) following the OpenPGP specification
Using the building blocks in rPGP correctly and safely requires a solid understanding of OpenPGP and at least a basic understanding of cryptography.
OpenPGP is a layered technology
For context, OpenPGP can be thought of as a multi-layered technology, roughly like this:
- Wire format: Packet framing, Packet content, ASCII armor, ...
- Composite objects (e.g. Certificates, Messages) constructed according to grammars
- Functionality to process data, such as calculation and validation of OpenPGP signatures and encryption and decryption of messages.
- OpenPGP semantics (e.g.: Expiration and Revocation of Certificates and their components, Key Flags that define which semantical operations a given component key may be used for, signaling of algorithm preferences, ...)
Of these layers, the OpenPGP RFC specifies 1-3, while 4 is not specified in detail.
Some work on formalizing OpenPGP semantics can be found in draft-gallagher-openpgp-signatures and draft-dkg-openpgp-revocation.
Analogous to the RFC, rPGP handles layers 1-3, but explicitly does not deal with 4. Applications that need OpenPGP semantics must implement them manually, or rely on additional libraries to deal with that layer.
NOTE: The rpgpie
library implements some of these high level OpenPGP semantics.
It may be useful either to incorporate in rPGP projects, or to study for reference.
Mechanisms in OpenPGP evolve over time
rPGP can handle a wide range of OpenPGP artifacts. It offers support for almost all mechanisms in OpenPGP, both modern and those now considered legacy.
This explicitly includes artifacts that use historical algorithms, which are considered insecure given today's understanding.
rPGP doesn't ensure that application developers use appropriate cryptographic building blocks for their purposes (even though it generally produces appropriately modern artifacts, by default).
See "Overview of OpenPGP formats and mechanisms" for more details on the evolution of OpenPGP over time.
Minimum Supported Rust Version (MSRV)
All crates in this repository support Rust 1.85 or higher. In future minimally supported version of Rust can be changed, but it will be done with a minor version bump.
Funding
RFC 9580 support for rPGP has been funded in part through NGI0 Core, a fund established by NLnet with financial support from the European Commission's Next Generation Internet programme.
License
This project is licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.