1pub trait MtlsInterface: Send + Sync { 2 fn mtls_root_cert_pem(&self) -> &[u8]; 3 fn mtls_cert_pem(&self) -> &[u8]; 4 fn mtls_private_key_pem(&self) -> &[u8]; 5}