[−][src]Struct openssl::ssl::SslConnector
A type which wraps client-side streams in a TLS session.
OpenSSL's default configuration is highly insecure. This connector manages the OpenSSL structures, configuring cipher suites, session options, hostname verification, and more.
OpenSSL's built in hostname verification is used when linking against OpenSSL 1.0.2 or 1.1.0, and a custom implementation is used when linking against OpenSSL 1.0.1.
Methods
impl SslConnector
[src]
pub fn builder(method: SslMethod) -> Result<SslConnectorBuilder, ErrorStack>
[src]
Creates a new builder for TLS connections.
The default configuration is subject to change, and is currently derived from Python.
pub fn connect<S>(
&self,
domain: &str,
stream: S
) -> Result<SslStream<S>, HandshakeError<S>> where
S: Read + Write,
[src]
&self,
domain: &str,
stream: S
) -> Result<SslStream<S>, HandshakeError<S>> where
S: Read + Write,
Initiates a client-side TLS session on a stream.
The domain is used for SNI and hostname verification.
pub fn configure(&self) -> Result<ConnectConfiguration, ErrorStack>
[src]
Returns a structure allowing for configuration of a single TLS session before connection.
Trait Implementations
impl Clone for SslConnector
[src]
fn clone(&self) -> SslConnector
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Auto Trait Implementations
impl Send for SslConnector
impl Unpin for SslConnector
impl Sync for SslConnector
impl UnwindSafe for SslConnector
impl RefUnwindSafe for SslConnector
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,