purecrypto 0.6.10

A pure-Rust cryptography toolkit with no foreign-code dependencies, from constant-time primitives up to keys, X.509 and TLS.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! TLS PKI: trust anchors and certificate-chain verification.

mod crls;
mod store;
mod verify;

#[allow(unused_imports)]
pub use crls::CrlStore;
#[allow(unused_imports)]
pub use store::RootCertStore;
#[allow(unused_imports)]
pub(crate) use verify::{
    ChainPurpose, verify_chain, verify_chain_for_purpose, verify_chain_with_crls,
    verify_chain_with_crls_for_purpose, verify_hostname,
};