Struct openssl::ssl::SslContext [] [src]

pub struct SslContext {
    // some fields omitted
}

An SSL context object

Methods

impl SslContext
[src]

fn new(method: SslMethod) -> Result<SslContextSslError>

Creates a new SSL context.

fn set_verify(&mut self, mode: SslVerifyMode, verify: Option<VerifyCallback>)

Configures the certificate verification method for new connections.

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.

fn set_verify_depth(&mut self, depth: u32)

Sets verification depth

fn set_read_ahead(&self, m: u32)

fn set_tmp_dh(&self, dh: DH) -> Result<()SslError>

fn set_CA_file<P: AsRef<Path>>(&mut self, file: P) -> Result<()SslError>

Specifies the file that contains trusted CA certificates.

fn set_certificate_file<P: AsRef<Path>>(&mut self, file: P, file_type: X509FileType) -> Result<()SslError>

Specifies the file that contains certificate

fn set_certificate_chain_file<P: AsRef<Path>>(&mut self, file: P, file_type: X509FileType) -> Result<()SslError>

Specifies the file that contains certificate chain

fn set_certificate(&mut self, cert: &X509) -> Result<()SslError>

Specifies the certificate

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()

fn set_private_key_file<P: AsRef<Path>>(&mut self, file: P, file_type: X509FileType) -> Result<()SslError>

Specifies the file that contains private key

fn set_private_key(&mut self, key: &PKey) -> Result<()SslError>

Specifies the private key

fn check_private_key(&mut self) -> Result<()SslError>

Check consistency of private key and certificate

fn set_cipher_list(&mut self, cipher_list: &str) -> Result<()SslError>

fn set_options(&mut self, option: SslContextOptions) -> SslContextOptions

fn get_options(&mut self) -> SslContextOptions

fn clear_options(&mut self, option: SslContextOptions) -> SslContextOptions

Trait Implementations

impl Send for SslContext
[src]

impl Sync for SslContext
[src]

impl Debug for SslContext
[src]

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

Formats the value using the given formatter.

impl Drop for SslContext
[src]

fn drop(&mut self)

A method called when the value goes out of scope. Read more

impl<'a> IntoSsl for &'a SslContext
[src]

fn into_ssl(self) -> Result<SslSslError>