9 breaking releases

0.10.0 Nov 3, 2023
0.9.0 Jul 24, 2023
0.8.0 Jun 3, 2023
0.6.0 Mar 19, 2023
0.1.0 Jan 3, 2022

#911 in Cryptography

Download history 97/week @ 2023-12-17 65/week @ 2023-12-24 56/week @ 2023-12-31 128/week @ 2024-01-07 98/week @ 2024-01-14 109/week @ 2024-01-21 82/week @ 2024-01-28 87/week @ 2024-02-04 86/week @ 2024-02-11 247/week @ 2024-02-18 133/week @ 2024-02-25 130/week @ 2024-03-03 134/week @ 2024-03-10 107/week @ 2024-03-17 95/week @ 2024-03-24 213/week @ 2024-03-31

566 downloads per month
Used in 3 crates (via debian-packaging)

MPL-2.0 license

28KB
410 lines

pgp-cleartext

pgp-cleartext is a library crate implementing support for the PGP cleartext framework (RFC 4880 Section 7) using the pgp crate.

The functionality in this crate is nominally part of the pgp crate itself. This feature is tracked at https://github.com/rpgp/rpgp/issues/122.


lib.rs:

PGP cleartext framework

The PGP cleartext framework is a mechanism to store PGP signatures inline with the cleartext data that is being signed.

The cleartext framework is defined by RFC 4880 Section 7 and this implementation aims to be conformant with the specification.

PGP cleartext signatures are text documents beginning with -----BEGIN PGP SIGNED MESSAGE-----. They have the form:

-----BEGIN PGP SIGNED MESSAGE-----
Hash: <digest>

<normalized signed content>
-----BEGIN PGP SIGNATURE-----
<headers>

<signature data>
-----END PGP SIGNATURE-----

Dependencies

~13–21MB
~289K SLoC