pub struct TlsClientConfig { /* private fields */ }Expand description
TLS Client Configuration
Implementations§
Source§impl TlsClientConfig
impl TlsClientConfig
Sourcepub fn with_tls_versions(self, versions: Vec<TlsVersion>) -> Self
pub fn with_tls_versions(self, versions: Vec<TlsVersion>) -> Self
Set allowed TLS protocol versions
Sourcepub fn with_cipher_suites(
self,
cipher_suites: Vec<SupportedCipherSuite>,
) -> Self
pub fn with_cipher_suites( self, cipher_suites: Vec<SupportedCipherSuite>, ) -> Self
Set allowed cipher suites
Sourcepub fn with_client_certificate<S: Into<String>>(
self,
cert_path: S,
key_path: S,
) -> Self
pub fn with_client_certificate<S: Into<String>>( self, cert_path: S, key_path: S, ) -> Self
Configure client authentication for mTLS
Sourcepub fn insecure(self) -> Self
pub fn insecure(self) -> Self
Allow insecure connections (skip certificate verification) WARNING: This is not recommended for production use
Sourcepub fn with_pinned_cert_hash(self, hash: Vec<u8>) -> Self
pub fn with_pinned_cert_hash(self, hash: Vec<u8>) -> Self
Pin a certificate by its SHA-256 hash/fingerprint This provides additional security by only accepting connections from servers with the exact certificate matching this hash
Sourcepub fn calculate_cert_hash(cert: &Certificate) -> Vec<u8> ⓘ
pub fn calculate_cert_hash(cert: &Certificate) -> Vec<u8> ⓘ
Calculate SHA-256 hash for a certificate to use with pinning
Sourcepub fn load_client_config(&self) -> Result<ClientConfig>
pub fn load_client_config(&self) -> Result<ClientConfig>
Load the TLS client configuration
Sourcepub fn server_name(&self) -> Result<ServerName>
pub fn server_name(&self) -> Result<ServerName>
Get the server name as a rustls::ServerName
Auto Trait Implementations§
impl Freeze for TlsClientConfig
impl !RefUnwindSafe for TlsClientConfig
impl Send for TlsClientConfig
impl Sync for TlsClientConfig
impl Unpin for TlsClientConfig
impl !UnwindSafe for TlsClientConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more