Struct openssl::ssl::SslContext [−][src]
pub struct SslContext { /* fields omitted */ }
An SSL context object
Internally ref-counted, use .clone()
in the same way as Rc and Arc.
Methods
impl SslContext
[src]
impl SslContext
pub fn new(method: SslMethod) -> Result<SslContext, SslError>
[src]
pub fn new(method: SslMethod) -> Result<SslContext, SslError>
Creates a new SSL context.
pub fn set_verify(
&mut self,
mode: SslVerifyMode,
verify: Option<VerifyCallback>
)
[src]
pub fn set_verify(
&mut self,
mode: SslVerifyMode,
verify: Option<VerifyCallback>
)
Configures the certificate verification method for new connections.
pub fn set_verify_with_data<T>(
&mut self,
mode: SslVerifyMode,
verify: VerifyCallbackData<T>,
data: T
) where
T: Any + 'static,
[src]
pub fn set_verify_with_data<T>(
&mut self,
mode: SslVerifyMode,
verify: VerifyCallbackData<T>,
data: T
) where
T: Any + 'static,
Configures the certificate verification method for new connections also carrying supplied data.
pub fn set_servername_callback(&mut self, callback: Option<ServerNameCallback>)
[src]
pub fn set_servername_callback(&mut self, callback: Option<ServerNameCallback>)
Configures the server name indication (SNI) callback for new connections
obtain the server name with get_servername
then set the corresponding context
with set_ssl_context
pub fn set_servername_callback_with_data<T>(
&mut self,
callback: ServerNameCallbackData<T>,
data: T
) where
T: Any + 'static,
[src]
pub fn set_servername_callback_with_data<T>(
&mut self,
callback: ServerNameCallbackData<T>,
data: T
) where
T: Any + 'static,
Configures the server name indication (SNI) callback for new connections carrying supplied data
pub fn set_verify_depth(&mut self, depth: u32)
[src]
pub fn set_verify_depth(&mut self, depth: u32)
Sets verification depth
pub fn set_read_ahead(&self, m: u32)
[src]
pub fn set_read_ahead(&self, m: u32)
pub fn set_tmp_dh(&self, dh: DH) -> Result<(), SslError>
[src]
pub fn set_tmp_dh(&self, dh: DH) -> Result<(), SslError>
pub fn set_default_verify_paths(&mut self) -> Result<(), SslError>
[src]
pub fn set_default_verify_paths(&mut self) -> Result<(), SslError>
Use the default locations of trusted certificates for verification.
These locations are read from the SSL_CERT_FILE
and SSL_CERT_DIR
environment variables if present, or defaults specified at OpenSSL
build time otherwise.
pub fn set_CA_file<P: AsRef<Path>>(&mut self, file: P) -> Result<(), SslError>
[src]
pub fn set_CA_file<P: AsRef<Path>>(&mut self, file: P) -> Result<(), SslError>
Specifies the file that contains trusted CA certificates.
pub fn set_session_id_context(&mut self, sid_ctx: &[u8]) -> Result<(), SslError>
[src]
pub fn set_session_id_context(&mut self, sid_ctx: &[u8]) -> Result<(), SslError>
Set the context identifier for sessions
This value identifies the server's session cache to a clients, telling them when they're able to reuse sessions. Should be set to a unique value per server, unless multiple servers share a session cache.
This value should be set when using client certificates, or each request will fail handshake and need to be restarted.
pub fn set_certificate_file<P: AsRef<Path>>(
&mut self,
file: P,
file_type: X509FileType
) -> Result<(), SslError>
[src]
pub fn set_certificate_file<P: AsRef<Path>>(
&mut self,
file: P,
file_type: X509FileType
) -> Result<(), SslError>
Specifies the file that contains certificate
pub fn set_certificate_chain_file<P: AsRef<Path>>(
&mut self,
file: P,
file_type: X509FileType
) -> Result<(), SslError>
[src]
pub fn set_certificate_chain_file<P: AsRef<Path>>(
&mut self,
file: P,
file_type: X509FileType
) -> Result<(), SslError>
Specifies the file that contains certificate chain
pub fn set_certificate(&mut self, cert: &X509) -> Result<(), SslError>
[src]
pub fn set_certificate(&mut self, cert: &X509) -> Result<(), SslError>
Specifies the certificate
pub fn add_extra_chain_cert(&mut self, cert: &X509) -> Result<(), SslError>
[src]
pub fn add_extra_chain_cert(&mut self, cert: &X509) -> Result<(), SslError>
Adds a certificate to the certificate chain presented together with the certificate specified using set_certificate()
pub fn set_private_key_file<P: AsRef<Path>>(
&mut self,
file: P,
file_type: X509FileType
) -> Result<(), SslError>
[src]
pub fn set_private_key_file<P: AsRef<Path>>(
&mut self,
file: P,
file_type: X509FileType
) -> Result<(), SslError>
Specifies the file that contains private key
pub fn set_private_key(&mut self, key: &PKey) -> Result<(), SslError>
[src]
pub fn set_private_key(&mut self, key: &PKey) -> Result<(), SslError>
Specifies the private key
pub fn check_private_key(&mut self) -> Result<(), SslError>
[src]
pub fn check_private_key(&mut self) -> Result<(), SslError>
Check consistency of private key and certificate
pub fn set_cipher_list(&mut self, cipher_list: &str) -> Result<(), SslError>
[src]
pub fn set_cipher_list(&mut self, cipher_list: &str) -> Result<(), SslError>
pub fn set_options(&mut self, option: SslContextOptions) -> SslContextOptions
[src]
pub fn set_options(&mut self, option: SslContextOptions) -> SslContextOptions
pub fn get_options(&mut self) -> SslContextOptions
[src]
pub fn get_options(&mut self) -> SslContextOptions
pub fn clear_options(&mut self, option: SslContextOptions) -> SslContextOptions
[src]
pub fn clear_options(&mut self, option: SslContextOptions) -> SslContextOptions
Trait Implementations
impl Send for SslContext
[src]
impl Send for SslContext
impl Sync for SslContext
[src]
impl Sync for SslContext
impl Clone for SslContext
[src]
impl Clone for SslContext
fn clone(&self) -> Self
[src]
fn clone(&self) -> Self
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for SslContext
[src]
impl Debug for SslContext
fn fmt(&self, fmt: &mut Formatter) -> Result
[src]
fn fmt(&self, fmt: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Drop for SslContext
[src]
impl Drop for SslContext
impl<'a> IntoSsl for &'a SslContext
[src]
impl<'a> IntoSsl for &'a SslContext