Struct openssl::ssl::SslContextRef [−][src]
Reference to SslContext
Implementations
impl SslContextRef
[src]
pub fn certificate(&self) -> Option<&X509Ref>
[src]
Returns the certificate associated with this SslContext
, if present.
Requires OpenSSL 1.0.2 or newer.
This corresponds to SSL_CTX_get0_certificate
.
pub fn private_key(&self) -> Option<&PKeyRef<Private>>
[src]
Returns the private key associated with this SslContext
, if present.
Requires OpenSSL 1.0.2 or newer.
This corresponds to SSL_CTX_get0_privatekey
.
pub fn cert_store(&self) -> &X509StoreRef
[src]
Returns a shared reference to the certificate store used for verification.
This corresponds to SSL_CTX_get_cert_store
.
pub fn extra_chain_certs(&self) -> &StackRef<X509>
[src]
Returns a shared reference to the stack of certificates making up the chain from the leaf.
This corresponds to SSL_CTX_get_extra_chain_certs
.
pub fn ex_data<T>(&self, index: Index<SslContext, T>) -> Option<&T>
[src]
Returns a reference to the extra data at the specified index.
This corresponds to SSL_CTX_get_ex_data
.
pub fn max_early_data(&self) -> u32
[src]
Gets the maximum amount of early data that will be accepted on incoming connections.
Requires OpenSSL 1.1.1 or newer.
This corresponds to SSL_CTX_get_max_early_data
.
pub unsafe fn add_session(&self, session: &SslSessionRef) -> bool
[src]
Adds a session to the context’s cache.
Returns true
if the session was successfully added to the cache, and false
if it was already present.
This corresponds to SSL_CTX_add_session
.
Safety
The caller of this method is responsible for ensuring that the session has never been used with another
SslContext
than this one.
pub unsafe fn remove_session(&self, session: &SslSessionRef) -> bool
[src]
Removes a session from the context’s cache and marks it as non-resumable.
Returns true
if the session was successfully found and removed, and false
otherwise.
This corresponds to SSL_CTX_remove_session
.
Safety
The caller of this method is responsible for ensuring that the session has never been used with another
SslContext
than this one.
pub fn session_cache_size(&self) -> i64
[src]
Returns the context’s session cache size limit.
A value of 0 means that the cache size is unbounded.
This corresponds to SSL_CTX_sess_get_cache_size
.
Trait Implementations
impl AsRef<SslContextRef> for SslContext
[src]
fn as_ref(&self) -> &SslContextRef
[src]
impl Borrow<SslContextRef> for SslContext
[src]
fn borrow(&self) -> &SslContextRef
[src]
impl ForeignTypeRef for SslContextRef
[src]
type CType = SSL_CTX
The raw C type.
pub unsafe fn from_ptr<'a>(ptr: *mut Self::CType) -> &'a Self
[src]
pub unsafe fn from_ptr_mut<'a>(ptr: *mut Self::CType) -> &'a mut Self
[src]
pub fn as_ptr(&self) -> *mut Self::CType
[src]
impl Send for SslContextRef
[src]
impl Sync for SslContextRef
[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, 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>,