pub trait CertifiedConn {
    fn peer_certificate(&self) -> IoResult<Option<Vec<u8>>>;
}
Expand description

An object with a peer certificate: typically a TLS connection.

Required Methods

Try to return the (DER-encoded) peer certificate for this connection, if any.

Implementors