All Projects → rpgp → Rpgp

rpgp / Rpgp

Licence: other
Pure rust implementation of OpenPGP

Programming Languages

rust
11053 projects

Labels

Projects that are alternatives of or similar to Rpgp

Fugl
A warrant canary system
Stars: ✭ 27 (-82.12%)
Mutual labels:  pgp
Mailpile
A free & open modern, fast email client with user-friendly encryption and privacy features
Stars: ✭ 8,533 (+5550.99%)
Mutual labels:  pgp
Opaquemail
.NET email library and proxy supporting IMAP, POP3, and SMTP with S/MIME and PGP.
Stars: ✭ 91 (-39.74%)
Mutual labels:  pgp
Pstore
Python Protected Password Store (django server + cli interface) using client side GPG encryption
Stars: ✭ 34 (-77.48%)
Mutual labels:  pgp
Minisign
A dead simple tool to sign files and verify digital signatures.
Stars: ✭ 1,105 (+631.79%)
Mutual labels:  pgp
Mimekit
A .NET MIME creation and parser library with support for S/MIME, PGP, DKIM, TNEF and Unix mbox spools.
Stars: ✭ 1,214 (+703.97%)
Mutual labels:  pgp
Objectivepgp
OpenPGP library for iOS and macOS
Stars: ✭ 557 (+268.87%)
Mutual labels:  pgp
Zeyple
Postfix filter/hook to automatically encrypt outgoing emails with PGP/GPG
Stars: ✭ 122 (-19.21%)
Mutual labels:  pgp
Helm Secrets
DEPRECATED A helm plugin that help manage secrets with Git workflow and store them anywhere
Stars: ✭ 1,129 (+647.68%)
Mutual labels:  pgp
Mentat
scalable group chat with tags and pretty good privacy.
Stars: ✭ 89 (-41.06%)
Mutual labels:  pgp
Passforios
Pass for iOS - an iOS client compatible with Pass command line application.
Stars: ✭ 991 (+556.29%)
Mutual labels:  pgp
Gmime
A C/C++ MIME creation and parser library with support for S/MIME, PGP, and Unix mbox spools.
Stars: ✭ 57 (-62.25%)
Mutual labels:  pgp
Iostreams
IOStreams is an incredibly powerful streaming library that makes changes to file formats, compression, encryption, or storage mechanism transparent to the application.
Stars: ✭ 84 (-44.37%)
Mutual labels:  pgp
Client
Keybase Go Library, Client, Service, OS X, iOS, Android, Electron
Stars: ✭ 7,848 (+5097.35%)
Mutual labels:  pgp
Encrypt.to
Send encrypted PGP messages with one click
Stars: ✭ 116 (-23.18%)
Mutual labels:  pgp
Sephia Five
A secure and PGP enabled webmail module for Phosphorus Five
Stars: ✭ 21 (-86.09%)
Mutual labels:  pgp
Pius
PGP Individual User Signer
Stars: ✭ 77 (-49.01%)
Mutual labels:  pgp
Cli
share secrets within teams to avoid plain-text secrets from day one
Stars: ✭ 138 (-8.61%)
Mutual labels:  pgp
Rnp
RNP: high performance C++ OpenPGP library, fully compliant to RFC 4880
Stars: ✭ 122 (-19.21%)
Mutual labels:  pgp
Dat Keyserver
a distributed PGP keyserver project based on the dat protocol
Stars: ✭ 89 (-41.06%)
Mutual labels:  pgp

rPGP

OpenPGP implemented in pure Rust, permissively licensed

crates.io version CircleCI build status Appveyor build status Docs License

rPGP is the only full Rust implementation of OpenPGP, following RFC4880 and RFC2440. It offers a minimal low-level API and does not prescribe trust schemes or key management policies. It fully supports all functionality required by the Autocrypt 1.1 e-mail encryption specification.

rPGP is regularly published as the pgp Crate and its RSA implementation lives under the collective RustCrypto umbrella. For ECC crypto support we are using Curve25519-dalek.

Please note that the API is not well documented yet. You may check out the tests which exercise the API. Please open issues here if if you are attempting to use rPGP and need help.

Status (Last updated: October 2019)

rPGP and its RSA dependency got a first independent security review mid 2019. No critical flaws were found. We have fixed and are fixing some high, medium and low risk ones. We will soon publish the full review report. Further independent security reviews are upcoming.

rPGP is used in production by Delta Chat, the e-mail based messenger app suite, successfully running on Windows, Linux, macOS, Android and iOS in 32bit (only Windows and Android) and 64 bit builds (for the other platforms).

More details on platform and OpenPGP implementation status:

Experimental WASM Support

When enabeling the wasm feature, rpgp can be compiled to run using WASM in Node.js and the supported Browsers. Experimental bindings for this can be found in rpgp/rpgp-js.

Developement

To run the stress tests,

> git submodule update --init --recursive
> cargo test --release -- --ignored

To enable debugging, add

use pretty_env_logger;
let _ = pretty_env_logger::try_init();

And then run tests with RUST_LOG=pgp=info.

How is rPGP different from Sequoia?

Some key differences:

  • rPGP has a more libre license than Sequoia that allows a broader usage

  • rPGP is a library with a well-defined, relatively small feature-set where Sequoia also tries to be a replacement for the GPG command line tool

  • All crypto used in rPGP is implemented in pure Rust, whereas sequoia uses Nettle, which is implemented in C.

LICENSE

MIT or Apache 2.0

Contribution

Unless you explicitly state otherwise, any contribution submitted for inclusion in rPGP by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].