Struct openssl::ssl::SslStream [] [src]

pub struct SslStream<S> {
    // some fields omitted
}

A stream wrapper which handles SSL encryption for an underlying stream.

Methods

impl<S: Read + Write> SslStream<S>

fn connect<T: IntoSsl>(ssl: T, stream: S) -> Result<Self, SslError>

Creates an SSL/TLS client operating over the provided stream.

fn accept<T: IntoSsl>(ssl: T, stream: S) -> Result<Self, SslError>

Creates an SSL/TLS server operating over the provided stream.

fn connect_generic<T: IntoSsl>(ssl: T, stream: S) -> Result<SslStream<S>, SslError>

Deprecated

Use connect.

fn accept_generic<T: IntoSsl>(ssl: T, stream: S) -> Result<SslStream<S>, SslError>

Deprecated

Use accept.

fn ssl_read(&mut self, buf: &mut [u8]) -> Result<usize, Error>

Like read, but returns an ssl::Error rather than an io::Error.

This is particularly useful with a nonblocking socket, where the error value will identify if OpenSSL is waiting on read or write readiness.

fn ssl_write(&mut self, buf: &[u8]) -> Result<usize, Error>

Like write, but returns an ssl::Error rather than an io::Error.

This is particularly useful with a nonblocking socket, where the error value will identify if OpenSSL is waiting on read or write readiness.

impl<S> SslStream<S>

fn get_ref(&self) -> &S

Returns a reference to the underlying stream.

fn get_mut(&mut self) -> &mut S

Returns a mutable reference to the underlying stream.

Warning

It is inadvisable to read from or write to the underlying stream as it will most likely corrupt the SSL session.

fn ssl(&self) -> &Ssl

Returns the OpenSSL Ssl object associated with this stream.

impl SslStream<TcpStream>

fn try_clone(&self) -> Result<SslStream<TcpStream>>

Deprecated

This method does not behave as expected and will be removed in a future release.

Trait Implementations

impl<S: Clone + Read + Write> Clone for SslStream<S>

Deprecated

This method does not behave as expected and will be removed in a future release.

fn clone(&self) -> SslStream<S>

fn clone_from(&mut self, source: &Self)

impl<S> Debug for SslStream<S> where S: Debug

fn fmt(&self, fmt: &mut Formatter) -> Result

impl<S: AsRawFd> AsRawFd for SslStream<S>

fn as_raw_fd(&self) -> RawFd

impl<S: Read + Write> Read for SslStream<S>

fn read(&mut self, buf: &mut [u8]) -> Result<usize>

fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>

fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>

fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>

fn by_ref(&mut self) -> &mut Self

fn bytes(self) -> Bytes<Self>

fn chars(self) -> Chars<Self>

fn chain<R>(self, next: R) -> Chain<Self, R> where R: Read

fn take(self, limit: u64) -> Take<Self>

fn tee<W>(self, out: W) -> Tee<Self, W> where W: Write

impl<S: Read + Write> Write for SslStream<S>

fn write(&mut self, buf: &[u8]) -> Result<usize>

fn flush(&mut self) -> Result<()>

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>

fn by_ref(&mut self) -> &mut Self

fn broadcast<W>(self, other: W) -> Broadcast<Self, W> where W: Write