Struct openssl::ssl::SslSession [−][src]
An encoded SSL session.
These can be cached to share sessions across connections.
Implementations
impl SslSession[src]
pub fn from_der(der: &[u8]) -> Result<SslSession, ErrorStack>[src]
Deserializes a DER-encoded session structure.
This corresponds to d2i_SSL_SESSION.
Methods from Deref<Target = SslSessionRef>
pub fn id(&self) -> &[u8]ⓘ[src]
Returns the SSL session ID.
This corresponds to SSL_SESSION_get_id.
pub fn master_key_len(&self) -> usize[src]
Returns the length of the master key.
This corresponds to SSL_SESSION_get_master_key.
pub fn master_key(&self, buf: &mut [u8]) -> usize[src]
Copies the master key into the provided buffer.
Returns the number of bytes written, or the size of the master key if the buffer is empty.
This corresponds to SSL_SESSION_get_master_key.
pub fn max_early_data(&self) -> u32[src]
Gets the maximum amount of early data that can be sent on this session.
Requires OpenSSL 1.1.1 or newer.
This corresponds to SSL_SESSION_get_max_early_data.
pub fn time(&self) -> i64[src]
Returns the time at which the session was established, in seconds since the Unix epoch.
This corresponds to SSL_SESSION_get_time.
pub fn timeout(&self) -> i64[src]
Returns the sessions timeout, in seconds.
A session older than this time should not be used for session resumption.
This corresponds to SSL_SESSION_get_timeout.
pub fn protocol_version(&self) -> SslVersion[src]
Returns the session’s TLS protocol version.
Requires OpenSSL 1.1.0 or newer.
This corresponds to SSL_SESSION_get_protocol_version.
pub fn to_der(&self) -> Result<Vec<u8>, ErrorStack>[src]
Serializes the session into a DER-encoded structure.
This corresponds to i2d_SSL_SESSION.
Trait Implementations
impl AsRef<SslSessionRef> for SslSession[src]
fn as_ref(&self) -> &SslSessionRef[src]
impl Borrow<SslSessionRef> for SslSession[src]
fn borrow(&self) -> &SslSessionRef[src]
impl Clone for SslSession[src]
fn clone(&self) -> SslSession[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Deref for SslSession[src]
type Target = SslSessionRef
The resulting type after dereferencing.
fn deref(&self) -> &SslSessionRef[src]
impl DerefMut for SslSession[src]
fn deref_mut(&mut self) -> &mut SslSessionRef[src]
impl Drop for SslSession[src]
impl ForeignType for SslSession[src]
type CType = SSL_SESSION
The raw C type.
type Ref = SslSessionRef
The type representing a reference to this type.
unsafe fn from_ptr(ptr: *mut SSL_SESSION) -> SslSession[src]
fn as_ptr(&self) -> *mut SSL_SESSION[src]
impl Send for SslSession[src]
impl Sync for SslSession[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut 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.
pub 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>,