ランキングに戻る

rpgp/rpgp

Rustdocs.rs/pgp

OpenPGP implemented in pure Rust, permissively licensed

rustpgpcryptographyopenpgp
スター成長
スター
1k
フォーク
102
週間成長
Issue
59
5001k
2017年10月2020年9月2023年8月2026年7月
成果物crates.iocargo add rpgp
README

rPGP

OpenPGP implemented in pure Rust, permissively licensed


rPGP is a pure Rust implementation of OpenPGP as specified in RFC9580. It supports 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, including v3 keys and signatures, are supported as well.)

See IMPL_STATUS for more details on the implemented PGP features and "Overview of OpenPGP formats and mechanisms" for context about them.

rPGP offers a flexible low-level API. It 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
  • GpgFrontend: Cross-platform OpenPGP desktop app with optional rPGP backend
  • debian-packaging: A library crate for dealing with Debian packages
  • himalaya: CLI to manage emails (includes pgp-lib component)
  • oct-git: Git signing and verification backend (with a focus on OpenPGP cards)
  • prs-lib: A CLI password manager inspired by pass (with optional rPGP backend, including OpenPGP card support)
  • rpgpie: An experimental OpenPGP semantics library
  • rpm: A pure rust library for parsing and creating RPM files
  • rsop: A SOP CLI tool based on rPGP and rpgpie
  • rsop-oct: A SOP CLI tool for OpenPGP card devices (also based on rPGP and rpgpie)
  • signstar: A signing enclave framework for HSM backends
  • voa-openpgp: OpenPGP implementation for VOA

Don't see your project here? Please send a PR :)

Usage

> cargo add pgp

Load a public key and verify an inline-signed message

use pgp::composed::{Deserializable, Message, SignedPublicKey};

fn main() -> pgp::errors::Result<()> {
    let (public_key, _headers_public) = SignedPublicKey::from_armor_file("key.asc")?;

    let (mut msg, _headers_msg) = Message::from_armor_file("msg.asc")?;
    let payload = msg.as_data_string()?;
    if msg.verify(&public_key).is_ok() { // Verify using the primary (NOTE: This is not always the right key!)
        // Signature is correct, print message payload
        println!("Signed message: {:?}", payload);
    }

    Ok(())
}

Generate and verify a detached signature with an OpenPGP keypair

use pgp::composed::{Deserializable, DetachedSignature, SignedPublicKey, SignedSecretKey};
use pgp::crypto::hash::HashAlgorithm;
use pgp::types::Password;

fn main() -> pgp::errors::Result<()> {
   const DATA: &[u8] = b"Hello world!";

   // Create a signature over DATA with the private key
   let (private_key, _headers) = SignedSecretKey::from_armor_file("key.sec.asc")?;
   let sig = DetachedSignature::sign_binary_data(
      rand::thread_rng(),
      &private_key.primary_key, // Sign with the primary (NOTE: This is not always the right key!)
      &Password::empty(),
      HashAlgorithm::Sha256,
      DATA,
   )?;

   // Verify signature with the public key
   let (public_key, _headers) = SignedPublicKey::from_armor_file("key.asc")?;
   sig.verify(&public_key, DATA)?; // Verify with primary key (NOTE: This is not always the right key!)

   Ok(())
}

Cargo features

  • bzip2: Enables bzip2 support
  • asm: Enables assembly based optimizations
  • wasm: Allows building for wasm
  • large-rsa: Allow use of very large RSA keys (raises the limit from 8192 to 16384 bit)
  • malformed-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!
  • pqc: Enables implementation of PQC support as specified in RFC 9980 (this feature was previously called draft-pqc)
  • draft-wussler-openpgp-forwarding: Enables support for the formats and functionality from draft-wussler-openpgp-forwarding

Current Status

Last updated September 2025

FAQs

See FAQ.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:

  1. Wire format: Packet framing, Packet content, ASCII armor, ...
  2. Composite objects (e.g. Certificates, Messages) constructed according to grammars
  3. Functionality to process data, such as calculation and validation of OpenPGP signatures and encryption and decryption of messages.
  4. 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.88 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

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.

関連リポジトリ
farion1231/cc-switch

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

Rustcrates.ioMIT Licenseai-toolsclaude-code
ccswitch.io
119.8k8k
rustdesk/rustdesk

An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.

Rustcrates.ioGNU Affero General Public License v3.0remote-controlremote-desktop
rustdesk.com
118.6k18.1k
rust-lang/rust

Empowering everyone to build reliable and efficient software.

Rustcrates.ioApache License 2.0rustcompiler
rust-lang.org
114.8k15.4k
tauri-apps/tauri

Build smaller, faster, and more secure desktop and mobile applications with a web frontend.

Rustcrates.ioApache License 2.0rustwebview
tauri.app
109.3k3.8k
denoland/deno

A modern runtime for JavaScript and TypeScript.

Rustcrates.ioMIT Licensedenotypescript
deno.com
107.8k6.2k
oven-sh/bun

Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one

Rustcrates.ioOtherbunbundler
bun.com
95k4.9k
unionlabs/union

The trust-minimized, zero-knowledge bridging protocol, designed for censorship resistance, extremely high security, and usage in decentralized finance.

Rustcrates.ioApache License 2.0blockchaincosmos
union.build
73.9k3.9k
rtk-ai/rtk

CLI proxy that reduces LLM token consumption by 60-90% on common dev commands. Single Rust binary, zero dependencies

Rustcrates.ioApache License 2.0agentic-codingai-coding
rtk-ai.app
72.4k4.5k
toeverything/AFFiNE

There can be more than Notion and Miro. AFFiNE(pronounced [ə‘fain]) is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use.

TypeScriptnpmOthereditorcrdt
affine.pro
70.7k5.1k
openinterpreter/openinterpreter

A coding agent for open models like Kimi K3

Rustcrates.ioApache License 2.0coding-agentdeepseek
openinterpreter.com
67.1k5.8k
BurntSushi/ripgrep

ripgrep recursively searches directories for a regex pattern while respecting your gitignore

Rustcrates.ioThe Unlicenseripgreprecursively-search
66.4k2.7k
alacritty/alacritty

A cross-platform, OpenGL terminal emulator.

Rustcrates.ioApache License 2.0terminal-emulatorsopengl
alacritty.org
65k3.5k