1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! Support for mutual TLS client certificates.
//!
//! For details on how to configure mutual TLS, see [`MtlsConfig`] and the [TLS
//! guide](https://rocket.rs/master/guide/configuration/#tls). See
//! [`Certificate`] for a request guard that validates, verifies, and retrieves
//! client certificates.
pub use ;
pub use MtlsConfig;
pub use Error;
pub use Name;
/// A type alias for `Result` with the error type set to [`Error`].
pub type Result<T, E = Error> = Result;