6 releases (breaking)

0.28.0 Nov 24, 2023
0.27.0 Mar 24, 2023
0.26.0 Jan 11, 2023
0.25.0 Jul 14, 2022
0.23.0 Jan 21, 2021

#301 in Email

Download history 454/week @ 2024-01-02 448/week @ 2024-01-09 364/week @ 2024-01-16 434/week @ 2024-01-23 328/week @ 2024-01-30 452/week @ 2024-02-06 633/week @ 2024-02-13 753/week @ 2024-02-20 1032/week @ 2024-02-27 533/week @ 2024-03-05 395/week @ 2024-03-12 749/week @ 2024-03-19 178/week @ 2024-03-26 703/week @ 2024-04-02 714/week @ 2024-04-09 479/week @ 2024-04-16

2,201 downloads per month
Used in 14 crates (7 directly)

LGPL-2.0-or-later

5MB
66K SLoC

Discovering and publishing OpenPGP certificates over the network.

This crate provides access to keyservers using the HKP protocol, and searching and publishing Web Key Directories.


lib.rs:

Discovering and publishing OpenPGP certificates over the network.

This crate provides access to keyservers using the HKP protocol, and searching and publishing Web Key Directories.

Additionally the pks module exposes private key operations using the PKS protocol.

Examples

This example demonstrates how to fetch a certificate from the default key server:

let mut ks = KeyServer::default();
let keyid: KeyID = "31855247603831FD".parse()?;
println!("{:?}", ks.get(keyid).await?);

This example demonstrates how to fetch a certificate using WKD:

let certs = sequoia_net::wkd::get(&reqwest::Client::new(), "juliett@example.org").await?;

Dependencies

~19–37MB
~591K SLoC