pub struct OpenSSLConfig { /* private fields */ }
Available on crate feature tls-openssl only.
Expand description

OpenSSL configuration.

Implementations§

source§

impl OpenSSLConfig

source

pub fn from_acceptor(acceptor: Arc<SslAcceptor>) -> Self

Create config from Arc<SslAcceptor>.

source

pub fn from_der(cert: &[u8], key: &[u8]) -> Result<Self, OpenSSLError>

This helper will establish a TLS server based on strong cipher suites from a DER-encoded certificate and key.

source

pub fn from_pem(cert: &[u8], key: &[u8]) -> Result<Self, OpenSSLError>

This helper will establish a TLS server based on strong cipher suites from a PEM-formatted certificate and key.

source

pub fn from_pem_file( cert: impl AsRef<Path>, key: impl AsRef<Path> ) -> Result<Self, OpenSSLError>

This helper will establish a TLS server based on strong cipher suites from a PEM-formatted certificate and key.

source

pub fn from_pem_chain_file( chain: impl AsRef<Path>, key: impl AsRef<Path> ) -> Result<Self, OpenSSLError>

This helper will establish a TLS server based on strong cipher suites from a PEM-formatted certificate chain and key.

source

pub fn get_inner(&self) -> Arc<SslAcceptor>

Get inner Arc<SslAcceptor>.

source

pub fn reload_from_acceptor(&self, acceptor: Arc<SslAcceptor>)

Reload acceptor from Arc<SslAcceptor>.

source

pub fn reload_from_der( &self, cert: &[u8], key: &[u8] ) -> Result<(), OpenSSLError>

Reload acceptor from a DER-encoded certificate and key.

source

pub fn reload_from_pem( &self, cert: &[u8], key: &[u8] ) -> Result<(), OpenSSLError>

Reload acceptor from a PEM-formatted certificate and key.

source

pub fn reload_from_pem_file( &self, cert: impl AsRef<Path>, key: impl AsRef<Path> ) -> Result<(), OpenSSLError>

Reload acceptor from a PEM-formatted certificate and key.

source

pub fn reload_from_pem_chain_file( &self, chain: impl AsRef<Path>, key: impl AsRef<Path> ) -> Result<(), OpenSSLError>

Reload acceptor from a PEM-formatted certificate chain and key.

Trait Implementations§

source§

impl Clone for OpenSSLConfig

source§

fn clone(&self) -> OpenSSLConfig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for OpenSSLConfig

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl TryFrom<SslAcceptorBuilder> for OpenSSLConfig

source§

fn try_from(tls_builder: SslAcceptorBuilder) -> Result<Self, Self::Error>

Build the OpenSSLConfig from an SslAcceptorBuilder. This allows precise control over the settings that will be used by OpenSSL in this server.

Example
use axum_server::tls_openssl::OpenSSLConfig;
use openssl::ssl::{SslAcceptor, SslMethod};
use std::convert::TryFrom;

#[tokio::main]
async fn main() {
    let mut tls_builder = SslAcceptor::mozilla_modern_v5(SslMethod::tls())
        .unwrap();
    // Set configurations like set_certificate_chain_file or
    // set_private_key_file.
    // let tls_builder.set_ ... ;
    let _config = OpenSSLConfig::try_from(tls_builder);
}
§

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more