Crate openpgp_cert_d

Source
Expand description

Shared OpenPGP Certificate Directory

This crate implements a generic OpenPGP certificate store that can be shared between implementations. It also defines a way to root trust, and a way to associate pet names with certificates. Sharing certificates and trust decisions increases security by enabling more applications to take advantage of OpenPGP. It also improves privacy by reducing the required certificate discoveries that go out to the network.

Note that this crate is only concerned with the low-level mechanics of the certificate directory and does not depend on an OpenPGP implementation. This is the reason that it works with bytes and not high-level OpenPGP data structures. Generally, it has to be combined with an OpenPGP implementation to be useful.

Structs§

CertD
A certificate store.
Tag
Facilitates caching of derived data.

Enums§

Error
OpenPGP-Cert-D errors.
MergeResult
The data type returned by the merge callback.

Constants§

TRUST_ROOT
Special name of the trust root.

Type Aliases§

Result
Result specialization.