1
2
3
4
5
6
7
8
9
10
11
12
13
//! CLI utilities for tls

#[cfg(feature = "rustls")]
pub mod rustls;

#[cfg(feature = "boring")]
pub mod boring;

#[cfg(feature = "boring")]
pub use boring::TlsServerCertKeyPair;

#[cfg(all(feature = "rustls", not(feature = "boring")))]
pub use rustls::TlsServerCertKeyPair;