pub trait TlsServerEndPoint {
// Required method
fn tls_server_end_point(&self) -> &[u8] ⓘ;
}Expand description
TLS transports expose the RFC 5929 tls-server-end-point binding.
Required Methods§
Sourcefn tls_server_end_point(&self) -> &[u8] ⓘ
fn tls_server_end_point(&self) -> &[u8] ⓘ
Returns the RFC 5929 channel-binding bytes derived from the peer certificate.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".