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

#335 in Email

Download history 440/week @ 2024-01-21 375/week @ 2024-01-28 437/week @ 2024-02-04 513/week @ 2024-02-11 817/week @ 2024-02-18 891/week @ 2024-02-25 691/week @ 2024-03-03 419/week @ 2024-03-10 595/week @ 2024-03-17 377/week @ 2024-03-24 568/week @ 2024-03-31 658/week @ 2024-04-07 605/week @ 2024-04-14 502/week @ 2024-04-21 269/week @ 2024-04-28 198/week @ 2024-05-05

1,623 downloads per month
Used in 16 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–35MB
~587K SLoC