pub trait AuthClient: Send + Sync {
// Required methods
fn verify_client_name(&self, host: &str, client_name: Option<&str>) -> bool;
fn verify_client_certs(
&self,
host: &str,
client_name: Option<&str>,
clinet_certs: &[u8],
) -> bool;
}